Answers for "how show character in c"

C
3

c print char

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

C program to find no of chars

Total number of characters in a string: 19
Posted by: Guest on June-07-2021

Code answers related to "C"

Browse Popular Code Answers by Language