The ft_printf
project of 42 school.
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.
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
To use the ft_printf
function in your project, include the header file and call the function as shown below:
#include "ft_printf.h"
int main() {
ft_printf("Hello, World!\n");
return 0;
}
For more details, refer to the subject.