✪ Choose the correct option.
What will be the output of the following program on GCC?
#include
int get();
int main(){
int a;
for(a=1;a<=2147483647;a++)
printf("%d ",a);
return 0;
}
What will be the output of the following program on GCC?
What will be the output of the following program on GCC?
#include
int get();
int main(){
int a;
for(a=1;a<=2147483647;a++)
printf("%d ",a);
return 0;
}