What will be the output of the following program on GCC?

		
					

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC?

#include 
int main(){
int j=1;
while(j < 255);
{
printf("%c %d ",j,j);
j = j + 1;
}
return 0;
}

A. prints “1 2 3 ………. 255 “
B. Compiler error
C. prints ASCII table
D. No Output