正在学习fortran与c语言混编,完全根据教材上的案例上的代码进行编辑,为什么老报错?使用的是ivf2010编辑,恳请各位大佬给个能调用c的方法。
[Fortran] 纯文本查看 复制代码 module cprog
interface
subroutine SUBA(a)
!DEC$ ATTRIBUTES C, ALIAS:'_sub1' :: SUBA
integer :: a
!DEC$ ATTRIBUTES REFERENCE :: a
end subroutine
subroutine SUBB(a)
!DEC$ ATTRIBUTES C, ALIAS:'_sub2' :: SUBB
integer :: a
!DEC$ ATTRIBUTES VALUE :: a
end subroutine
end interface
end module cprog
program main
use cprog
implicit none
integer(8) :: a=10
call SUBA(a)
call SUBB(a)
stop
end program
[C++] 纯文本查看 复制代码
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
void sub1(int *num)
{
printf("%d\n",*num);
}
void sub2(int num)
{
printf("%d\n",num);
}
#ifdef __cplusplus
}
#endif
EX1202FORTRAN代码.txt
(456 Bytes, 下载次数: 0)
EX1202C代码 .txt
(199 Bytes, 下载次数: 0)
|