n*********s 发帖数: 8 | 1 my C program need a routine in F77, just a small calculation. The routine is a
random number generator using function IEOR in F77. | h***o 发帖数: 539 | 2 c里面调用Fortran function的时候function name后面加个"_"就可以了
传的参数全部用指针
f77 -c function.f
gcc main.c function.o
【在 n*********s 的大作中提到】 : my C program need a routine in F77, just a small calculation. The routine is a : random number generator using function IEOR in F77.
| n*********s 发帖数: 8 | 3 Got it. Thanks.
BTW, can you tell me a little more about this kind of things, or refer me to
some books or websites?
Such as how to call c routine in f77..., how should I be careful about the
data type in c and f?...
is a
【在 h***o 的大作中提到】 : c里面调用Fortran function的时候function name后面加个"_"就可以了 : 传的参数全部用指针 : f77 -c function.f : gcc main.c function.o
| h***o 发帖数: 539 | 4 www.google.com
【在 n*********s 的大作中提到】 : Got it. Thanks. : BTW, can you tell me a little more about this kind of things, or refer me to : some books or websites? : Such as how to call c routine in f77..., how should I be careful about the : data type in c and f?... : : is a
|
|