putchar() displays a character on the screen
#include <stdio.h> int main() { puts("Press Enter:"); getchar(); putchar('H'); putchar('e'); putchar('l'); putchar('l'); putchar('o'); putchar('!'); putchar('\n'); return(0); }
Press Enter: 1 Hello!
2.13.char Display | ||||
2.13.1. | Displaying Character Data Types with printf: %c | |||
2.13.2. | Printing strings and characters | |||
2.13.3. | The putchar() function | |||
2.13.4. | Display the ASCII characters and their corresponding codes, from Code 32 on up to Code 127 |