JAMIA 2023 — Computer PYQ
JAMIA | Computer | 2023What is the output of following C program:
int main()
{ char ch = ‘A’;
int x = 97;
int y = sizeof(++x);
printf(“\nx is %d”,x);
while(ch<=’F’)
{
Switch(ch)
{
case’A’:
case’B’ :
case’C’ :
case’D’ : ch++; break;
case’E’ :
case’F’ : ch++;
} putchar (ch);
}
return0;

