Answers for "c print char[100]"

C
4

c print sizeof char

char b = 'b';
printf("the size of b is %d",sizeof(b));
Posted by: Guest on December-25-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