...
GATE-2024-CS1(Forenoon)
January 3, 2025
GATE-2024-CS1(Forenoon)
January 3, 2025
GATE-2024-CS1(Forenoon)
January 3, 2025
GATE-2024-CS1(Forenoon)
January 3, 2025

GATE-2024-CS1(Forenoon)

Question 18
Consider the following C program:

#include <stdio.h>

int main()
{<br
int a = 6; int b = 0;
while(a < 10)
{

a = a / 12 + 1; a += b;
}
printf(“%d”, a);

return 0;
}

Which one of the following statements is CORRECT?

A
The program prints 9 as output
B
The program prints 10 as output
C
The program gets stuck in an infinite loop
D
The program prints 6 as output
Correct Answer: C

Leave a Reply

Your email address will not be published. Required fields are marked *