Consider the following DO statement in Fortran 77 DO 23 X = 10.0, 2.0 The number of DO loop executions in the above statement is
DO 23 X = 10.0, 2.0
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option D
Explanation :
Do loop will not be executed since 0 is less than 10.
Be The First To Comment