Q.

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

A. 5
B. 10
C. 25
D. 50
Answer» C. 25
2.6k
0
Do you find this helpful?
11

Discussion

No comments yet