Answers for "scan and print char in c"

C
5

how make a character in c scanf

scanf(" %c", &c);
Posted by: Guest on July-08-2020
4

c print char

char bob = 'X';
printf("%c", bob);
putchar(bob);
Posted by: Guest on April-02-2021

Code answers related to "C"

Browse Popular Code Answers by Language