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.
- Host: GitHub
- URL: https://github.com/deruina/ft_printf
- Owner: DeRuina
- Created: 2022-11-28T06:19:41.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-25T22:05:41.000Z (over 2 years ago)
- Last Synced: 2025-01-18T07:47:14.756Z (4 months ago)
- Topics: 42, 42projects, ftprintf
- Language: C
- Homepage:
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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

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