Making and using a Dynamic-Link Library (DLL) from a Fortran procedure using Intel Fortran Compiler on Windows OS: getSquare()
Consider the following example Fortran function contained in Fortran module Square_mod which takes an input real number of type real64 and returns its square as output, module Square_mod implicit none contains function getSquare(val) result(valSquared) use, intrinsic :: iso_fortran_env, only: RK...