Report Bug
Qus :

How many times will the following loop execute?

int j;
for(j = 1; j <= 10; j = j-1)
printf("INFOMAX");

Qus

A. Forever
B. Never
C. 0
D. 10


Solution
A. Forever






Report Bug