What is the output of the following c programming code??
If the input character is "S"

#includestdio.h
int main()
{
char c;
printf("Enter a character : ");
scanf("%c" , &c);
printf("\n\nASCII value of %c = %d",c,c);
return 0;
}

Posted on by