https://github.com/micahondiwa/printf
Creating and implementing a custom printf function in C
https://github.com/micahondiwa/printf
c cli data-structures header-files malloc malloc-free printf
Last synced: 6 months ago
JSON representation
Creating and implementing a custom printf function in C
- Host: GitHub
- URL: https://github.com/micahondiwa/printf
- Owner: micahondiwa
- Created: 2022-11-08T15:47:16.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-08T16:04:06.000Z (about 3 years ago)
- Last Synced: 2025-02-09T07:35:45.054Z (12 months ago)
- Topics: c, cli, data-structures, header-files, malloc, malloc-free, printf
- Language: C
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## printf()
# Low level programming
- Project done during my Full Stack Software Engineering studies at [ALX Africa](https://www.alxafrica.com/software-engineering-2022/), a course offered by [Holberton School](https://www.holbertonschool.com/).
## Technologies
- Files written in ```vi```, ```vim```, and ```emacs``` editors.
- C files compiled using ```gcc 9.4.0```.
- C files wriiten according to the betty coding style.
- Files tested on ```Ubuntu 20.04``` LTS using ```gcc```.
## Files
| File | Description |
| --- | --- |
|[_printf()](_printf())| A function that performs formatted output conversion and print data. Its prototype is the following: ```int _printf(const char *format, ...) ``` Where **format** contains the string that is printed. As ```_printf()``` is variadic function, it can receives n arguments that replace by n tags written inside the string.|
# Contributers
- [micahondiwa](https://github.com/micahondiwa)
- [john-the1-mwagiru](https://github.com/john-the1-mwagiru)