Does anybody know how to convert RECORD in开发者_如何学Python Fortran to C language?
for example in Fortran:
RECORD /ABC/ MY_RECORD
Thanks,
A FORTRAN structure is pretty much like a C structure, right?
struct ABC MY_RECORD;
Should be fine, assuming you've converted the STRUCTURE /ABC/
definition already.
精彩评论