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\n", x, x); return 0; }
Ask Your Doubts Here
Comments
By: guest on 02 Jun 2017 01.58 am
There are 2 errors in this program.
1. "Undefined symbol x" error. Here x is not defined in the program.
2. Here while() statement syntax error.
1. "Undefined symbol x" error. Here x is not defined in the program.
2. Here while() statement syntax error.