Welcome to ft_printf, a project where I recreated the famous printf function in C.
The ft_printf function supports the following features:
-
Common conversions:
%c: character%s: string%d/%i: signed integer%u: unsigned integer%x/%X: hexadecimal (lowercase/uppercase)%p: pointer%%: to print%
-
Handling of precision and width for supported conversions.
This project is for educational purposes only. Its goal is to help understand the mechanics of printf. It is not intended to be copied or used in production. Learn, don’t cheat! ❌