Computer Science, asked by leatanui98, 1 year ago

write a program which reads a character from the keyboard and writes out its ASCII representation

Answers

Answered by sanju5956
1

#include <stdio.h>

int main()

{

char c;

printf("Enter a character: ");

// Reads character input from the user

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;

}

Output

Enter a character: G

ASCII value of G = 71

hope u like it


sanju5956: plz mark as brilent answer
Similar questions