This is a group project done in completion of the 0x11. C - printf task from ALX Africa
This is a replica of the printf()
function in C, it is a project done in completion of the 0x11. C - printf task from ALX Africa.
It utilizes various aspect of C, like pointers, arrays, memory allocation, variadic, etc...
- Language - C
- Text Editor - Vim, Shell
Check DESCRIPTiON section of the man-page, see Setup for how to use man-page
- Clone repository with:
git clone https://github.com/Theocode12/printf
- cd into repo:
$ cd ./path/printf
- Compile code with:
$ gcc -Wall -Werror -Wextra -pedantic -std=gnu89 *.c
- Check man page with
$ man ./man_3_printf.man/
Check DESCRIPTION section of the man-page, see Setup for how to use man-page
The man-page of the original printf()
function was referenced
Created by Valentine Maduagwu and Nwankwo Stephen - feel free to contact us!
This project is open source and available under the MIT License.
Test_1