1. Consider the following logical IF statement in FORTRAN 77
IF (SALT. EQ. PEPPER) GO TO 11 GOTO 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 given statement is logical IF statement. The control goes to statement 11 if SALT = PEPPER otherwise control goes to statement 13 Same is true in arithmetic statement (a).