0
How to use putchar() in printf statment..
C programming
2 Respostas
+ 2
But why you want to use `putchar` inside `printf`? can you elaborate more on this thought?
* Please tag C (specific language) 👍
+ 1
You mean something like this:
char a = 'c';
printf("%c",a);
?