The standardized successor to FORTRAN 77, released as an ISO standard in 1991 and an ANSI Standard in 1992.
In C you can easily initialize an array using the curly braces syntax, if I remember correctly: int* a = new …
arrays fortran fortran90 array-initializeI have compiled a fortran 90 program with gfortran which builds a scalable 3D array in a way I want. Upon …
arrays segmentation-fault fortran fortran90 gfortranI've read about the save statement in the (Intel's) language reference document, but I cannot quite grasp what it does. …
fortran fortran90I would like to know if in Fortran it is possible to use just a single command (with options/specifiers) …
fortran fortran90Let's say you have a Fortran 90 module containing lots of variables, functions and subroutines. In your USE statement, which convention …
module fortran conventions fortran90I've recently learnt about interface blocks when adding a function to my Fortran program. Everything works nice and neatly, but …
function module fortran fortran90 subroutineI need to write some data to file in Fortran 90. How should I use WRITE (*,*) input to have the values …
file-io formatting fortran fortran90I am trying to learn to work with functions. I have the following code: program main implicit none write(*,*) test(4) …
fortran fortran90