C basic programs
C basic programs
#include<stdio.h>
int main()
{
char c;
printf(“Enter a Character:”);
scanf(“%c”, &c);
// %d displays the integer value of a character
//%c displays the actual character
Printf(“ASCII value of %c = %d”, c,c);
Return 0;
}