What will be the output of the following program on GCC?
Practice Control Instructions –
What will be the output of the following program on GCC?
#include <stdio.h>
int main(){
int j=1;
while(j < 255);
{
printf("%c %d
",j,j);
j = j + 1;
}
return 0;
}