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

https://github.com/deruina/ft_printf

Custom implementation of the printf function in C. This project provides a unique version of the printf function, offering more control over the printing and formatting of output in C programs.
https://github.com/deruina/ft_printf

42 42projects ftprintf

Last synced: 2 months ago
JSON representation

Custom implementation of the printf function in C. This project provides a unique version of the printf function, offering more control over the printing and formatting of output in C programs.

Awesome Lists containing this project

README

        

# ft_printf

My own implementation of the famous printf.
The project was a 42 curriculum project, it only has the following
format specifiers:
```bash
%c - prints a character
%s - prints a string
%p - prints the address of the variable
%d - prints a decimal number
%i - prints a decimal number
%u - prints a positive number (unsigned)
%x - prints a hexadeimal number in lowercase
%X - prints a hexadeimal number in uppercase
%% - prints a %
```
In order to comline the program you just run in the terminal
the command:
```bash
make
```

### Evaluated by moulinette

![100/100](img/100.png)

## Author

- [@DeRuina](https://github.com/DeRuina)