12345678910



Question 1: Point out the correct statements are correct about the program below?
#include<stdio.h>
int main()
{
char ch;
while(x=0;x<=255;x++)
printf("ASCII value of %d character %c", x, x);
return 0;
}

1. The code generates an infinite loop
2. The code prints all ASCII values and its characters
3. Error: x undeclared identifier
4. Error: while statement missing