https://github.com/devhalimah/printf
ALX Printf Project cohort 14
https://github.com/devhalimah/printf
Last synced: about 6 hours ago
JSON representation
ALX Printf Project cohort 14
- Host: GitHub
- URL: https://github.com/devhalimah/printf
- Owner: devhalimah
- Created: 2023-05-30T01:02:17.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-01T11:42:24.000Z (about 3 years ago)
- Last Synced: 2025-05-15T08:45:02.211Z (about 1 year ago)
- Language: C
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ALX-Printf-Project
ALX Printf Project cohort 14
This is a project collaboration between Chibuzor Uzondu and Abdul-Azeez Halimah.
A function named "_printf" is created to imitate the actual "printf" command located in the stdio.h library. It contains some of the basic features and functions of the "printf" command.
_printf() is a function that performs formatted output conversion and prints data. The given prototype is:
int _printf(const char *format, ...)
Where **format** contains the string that is printed. Because _printf() is a variadic function, it receives n arguments replaced by n tags written inside the string.