Possible Duplicate:
fortran functions and return values
Hi, I have written a funtion in C language. I am trying to call it from fortran(2003).
ex: fun(int a,int b) -- here a is input to the funtion and b is output to the funtion.
I am calling the above funtion from fortran by giving some input to 'a'. It is processing fine in C language and filled output value 'b'. But when it comes to fortran file. Output value for 'b' is not holding the data. its giving some garbage. How can I get the output value?
