https://github.com/thegirlsynth/printf
This is a repository for my first group project in ALX School.
https://github.com/thegirlsynth/printf
Last synced: 3 months ago
JSON representation
This is a repository for my first group project in ALX School.
- Host: GitHub
- URL: https://github.com/thegirlsynth/printf
- Owner: thegirlSynth
- Created: 2022-07-08T21:45:24.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-22T15:06:53.000Z (over 2 years ago)
- Last Synced: 2023-03-05T11:27:28.253Z (about 2 years ago)
- Language: C
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# printf
## Description
This is a team project that demonstrates a pseudo-recreation of the C standard library function, `printf`.
## Usage
* The function `_printf` writes output to standard output, according to a given format.
* Upon successful return, `_printf` returns the number of characters printed (excluding the terminating null byte used to end output to strings). If an error is encountered, the function returns `-1`.Prototype:
`int _printf(const char *format, ...);##Authors:
* Cynthia Uche <[thegirlSynth](https://github.com/thegirlSynth)>
* Omniah Arafah <[omniah7](https://github.com/omniah7)>