1. Consider the following logical IF statement in Fortran 77
IF (SALT. LE. PEPPER) 11 GO TO 13
The above statement using arithmetic IF statement would be
Ask Your Doubts Here
Comments
By: guest on 02 Jun 2017 01.02 am
The logical IF statement means that IF SALT is less than or equal to PEPPER, control goes to statement 11 otherwise (i.e., SALT greater than PEPPER), control goes to 13 Same is true of arithmetic IF statement (a).