how to globalize a dummy argument from a function call?
I have below code in fortran
A(a,b) // here a and b are the values filling from function call but they are not declared any where
.
.
.
B(a.b) // same variable passing again to this function call also.
here the problem is the values from a and b are not maintaining for second call. its returning a garbage. Even i tried this using common but its not accepting to globalize dummy arguments. how to do it?
Thanks in advance