Predict the output of the program and what is the ASCII value of the C ?
#include stdio.h
int main() {
char c;
printf("Enter a character: ");
scanf("%c", &c);
printf("ASCII value of %c = %d", c, c);
return 0;
}

Posted on by