What will be output of the following “c” code?
		
					

Loading

โœช Choose the correct option.

What will be output of the following “c” code?


#include
void main()
{
char ch;
for(ch =1; ch<=255; ch++)
printf("%d %c", ch, ch);
}

A. symbols 1 to 255
B. infinite
C. Compilation Error
D. None of these