A custom implementation of the standard C printf
function, developed as part of the 42 school curriculum. This project demonstrates proficiency in handling variadic functions, format specifiers, and output formatting.
- Supports various format specifiers:
%c
,%s
,%p
,%d
,%i
,%u
,%x
,%X
, and%%
. - Handles flags, width, precision, and length modifiers.
- Manages variadic arguments using
stdarg.h
.
- GCC compiler
gcc -Wall -Wextra -Werror -c ft_printf.c