I've come across this FORTRAN statement from a model written in FORTRAN 77 . I've no clue what it means. Would be glad if someone can shed some light.
Here is how the code looks:
IF(NC)20,20,10
Note: NC is a variable (I think), and the numbers that follow are label statements (I think).
My question is, what does the above statement mean? I understand that, usually, after the "IF" statement, there should be an argument in the bracket, e.g. (a < 20). However, in this case, there is only a variable in the bracket.