โช 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);
}
#include
void main()
{
char ch;
for(ch =1; ch<=255; ch++)
printf("%d %c", ch, ch);
}