"Ft_Printf" is a custom implementation of the standard printf
function in C, developed as part of my coursework at 42 School. This project aims to replicate the functionality of printf
, supporting various format specifiers and managing variadic arguments efficiently.
https://github.com/rphlr/42-Subjects/blob/main/common-core/ft_printf/en.subject.pdf
- Custom implementation of the
printf
function - Support for multiple format specifiers
- Handling of variadic arguments
- Improved understanding of formatted output in C
To clone and compile this project, follow these steps:
git clone https://github.com/your-username/Ft_Printf.git
cd Ft_Printf
make
Include the function in your projects:
#include "ft_printf.h"
Use ft_printf to print formatted output:
ft_printf("Hello, %s!\n", "world");