The goal of this project is to recreate the C printf() function, mimicking its behavior and supporting a set of common format specifiers.
| Specifier | Description |
|---|---|
%c |
Prints a single character |
%s |
Prints a string |
%p |
Prints a pointer in hexadecimal format |
%d |
Prints a decimal (base 10) number |
%i |
Prints an integer in base 10 |
%u |
Prints an unsigned decimal (base 10) number |
%x |
Prints a number in lowercase hexadecimal |
%X |
Prints a number in uppercase hexadecimal |
%% |
Prints a percent sign |
This project is for educational purposes only and is part of the 42 Common Core curriculum. 42 Common Core curriculum,
π If you found this project helpful or interesting, consider supporting it by starring βοΈ or forking.