C Programming Questions and Answers
How many times "Ambition Box" is get printed?
#includeint main()
{
int x;
for(x=-1; x<=10; x++)
{
if(x < 5)
continue;
elsebreak;
printf("Ambition Box");
}
return0;
}
Option C
How many times the while loop will get executed if a short int is 2 byte wide?
#includeint main()
{
int j=1;
while(j <= 255)
{
printf("%c %d\n", j, j);
j++;
}
return0;
}
Answer :
Option B
Explanation :
The while(j <= 255) loop will get executed 255 times. The size short int(2 byte wide) does not affect the while() loop.