/ft_printf

The function 'ft_printf' mimics libc's function 'printf'. It manages the following conversions: cspdiuxX%. Also, it manages any combination of the following flags: ’-0.*’ and minimum field width with all conversions.

Primary LanguageC

📓ft_printf

This project is pretty straight forward. You will recode printf. You will then be allowed to reuse the function in your future projects. You will mainly learn how to use variadic arguments.

key concepts

You should look precisely how real printf function works. hint : minus - space - zero - space - putnbr or putchar

test programs

42TESTERS-PRINTF by Mazoise

printf_lover_v2 by charMstr

pft by gavinfielder