Computer Science, asked by seemapatel1825, 6 months ago

write a c program to print single character type variable​

Answers

Answered by vidyambhavya
1

Answer:

#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;

}

Explanation:

was my answer helpful

Similar questions