โช Choose the correct option.
What will be the output of the following program on GCC?
#include
void main(){
static int i;
for(;;)
if(i+++"Good Morning")
printf("Hello");
else
break;
}
What will be the output of the following program on GCC?
What will be the output of the following program on GCC?
#include
void main(){
static int i;
for(;;)
if(i+++"Good Morning")
printf("Hello");
else
break;
}