_printf is a custom implementation of C printf program function . It produces an output according to format described. It writes output in stdout (standard output stream).
- Input: _printf("%s\n", 'Awesome, isn't it?');
- Output: Awesome, isn't it?
- Input: _printf("Just a char %c\n", 'F');
- Output: Just a char F
- Input: _printf("Here we number %i\n", 23);
- Output: Here we have number 23
- Input: _printf("%d\n", 1000);
- Output: 1000