Reimplementation of the standard printf function in C.
The project focuses on variadic arguments, format parsing, and type-safe output.
va_list,va_start,va_arg- Format specifier parsing
- Integer & hexadecimal conversion
%c %s %p %d %i %u %x %X %%
make
ft_printf("Value: %d, Hex: %x\n", n, n);
- How printf works under the hood
- Writing modular and extensible parsers