ft_printf
The ft_printf project of 42 school.
Description
This project involves replicating the printf function from the C standard library. The printf function is used to print formatted text to the standard output (e.g., the console). The goal of this project is to better understand the internal workings of this function and to improve programming skills in C.
Installation
To compile the project, follow these steps:
- Clone the repository:
git clone https://github.com/CERVIII/ft_printf.git
- Navigate to the project directory:
cd ft_printf
- Compile the project:
make
Usage
To use the ft_printf function in your project, include the header file and call the function as shown below:
int main() {
ft_printf("Hello, World!\n");
return 0;
}
Project Statement
For more details, refer to the subject.