Join / sign up
Originally posted by: Rafik Zurob If you've tried calling system functions from a Fortran program, you might have run into difficulties because these functions don't have a Fortran interface. For example, the following code will fail execution: real x(10) pointer(p, x) p = malloc(40) if ...
Originally posted by: Rafik Zurob C interoperability is one of the most popular features of Fortran 2003. Recently, I was part of a discussion about why XL Fortran flags the following as invalid: use iso c binding type(c ptr) p logical(8), target :: logicalarray(20) p = c loc...