Q.

What is output of below program?
int main()
{
int i,j,count;
count=0;
for(i=0; i<5; i++);
{
for(j=0;j<5;j++);
{
count++;
}
}
printf("%d",count);
return 0;
}

A. 55
B. 54
C. 1
D. 0
Answer» C. 1
1.8k
0
Do you find this helpful?
9

Discussion

No comments yet