In this article, we are going to learn about the putchar() and puts() function of stdio.h header file in C programming language and use it put string and characters on console.
C programming inputoutput 9th Feb 2020, 4:38 AM ARAVINDH + 2 But why you want to use `putchar` inside `printf`? can you elaborate more on this thought? * Please tag C (specific language) 👍 9th Feb 2020, 4:41 AM Ipang
The standard C library provides several functions and macros for character 1/0. Here weconsider the getchar and putchar macros. As these macros read or write a single character, they are typically used in a loop to read/write a sequence of characters. A macro call is similar to a functio...