Control Instructions

Q1:
How many times the while loop will get executed if a short int is 2 byte wide?
#include<stdio.h>
int main()
{
    int j=1;
    while(j <= 255)
    {
        printf('%c %d\n', j, j);
        j++;
    }
    return 0;
}

A Infinite times

B 255 times

C 256 times

D 254 times

ANS:A - Infinite times

The while(j <= 255) loop will get executed 255 times. The size short int(2 byte wide) does not affect the while() loop.



img not found
img

For help Students Orientation
Mcqs Questions

One stop destination for examination, preparation, recruitment, and more. Specially designed online test to solve all your preparation worries. Go wherever you want to and practice whenever you want, using the online test platform.