An open API service indexing awesome lists of open source software.

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

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)