Write a program to display ASCII value of a character.
Input
#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\n", c, c);
return 0;
}
Output
Enter a character: G
ASCII value of G = 71
Input
#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\n", c, c);
return 0;
}
Output
Enter a character: G
ASCII value of G = 71
No comments:
Post a Comment