#include <stdio.h>
int main()
{
int i = 1024;
for (; i; i >>= 1)
printf("GeeksQuiz");
return 0;
}
How many times will GeeksQuiz be printed in the above program?
10
11
Infinite
The program will show compile-time error
This question is part of this quiz :
C Loops and Conditional statements