The C library function int printf(const char *format, ...) sends formatted output to stdout. _printf replaces the standard library implementation as a part of the ALX SE programme
GitHub repository: https://github.com/waley-code/printf
Task 0. I'm not going anywhere. You can print that wherever you want to. I'm here and I'm a Spur for life
Write a function that produces output according to a format.
https://github.com/waley-code/printf
- Write a function that produces output according to format. c : converts input into a character s : converts input into a string % : is format identifier
- Handle the following conversion specifiers:
d : converts input into a base 10 integer i : converts input into an integer