โช Choose the correct option.
What will be the output of the following program on GCC?
#include
int main(){
char j=1;
while(j<=255){
printf("%d,",j);
j = j + 1;
}
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 main(){
char j=1;
while(j<=255){
printf("%d,",j);
j = j + 1;
}
return 0;
}