This project aims ud to recreate the printf function from the standard library. The main objective of this project is to learn how to use variadic functions, parsing and handling flags and specifiers, and how to handle different types of data.
Supported conversions
%c print a character
%s print a string
%d and %i print a decimal number
%u print an unsigned decimal number
%x and %X print a hexadecimal number
%p print a pointer address
%% print a percent symbol