how to print a char in c code example
Example 1: print in c
// print hello world using c
printf("Hello World");
Example 2: c print char
char bob = 'X';
printf("%c", bob);
putchar(bob);
// print hello world using c
printf("Hello World");
char bob = 'X';
printf("%c", bob);
putchar(bob);