This is a repository for ALX printf team project
This project aims to recreate the behavior of the standard C library's printf function, allowing for formatted output to the console. By building our own version of printf, we gain a deeper understanding of string manipulation, formatting, and handling variadic arguments.
- Support for formatting specifiers such as
%d,%s,%c,%f, etc. - Handling of various flags and width/precision modifiers.
- Custom handling of specific modifiers or behaviors.
- Clone this repository: git clone https://github.com/AbrahamAlgorithm/printf-project.git
- Navigate to the project directory: cd printf-project
- Compile the source code: gcc -o printf main.c printf.c
- Run the executable: ./printf