https://github.com/f321x/printf-42-core
Implementation of the printf function in C as exercise in the 42 school curriculum
https://github.com/f321x/printf-42-core
Last synced: about 1 year ago
JSON representation
Implementation of the printf function in C as exercise in the 42 school curriculum
- Host: GitHub
- URL: https://github.com/f321x/printf-42-core
- Owner: f321x
- Created: 2023-11-09T09:07:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-24T12:57:19.000Z (almost 2 years ago)
- Last Synced: 2025-03-05T13:49:34.293Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 1.44 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# printf-42-core
Implementation of the printf function in C as exercise for the 42 school curriculum.
Implements the following flags:
* %c Prints a single character.
* %s Prints a string (as defined by the common C convention).
* %p The void * pointer argument has to be printed in hexadecimal format.
* %d Prints a decimal (base 10) number.
* %i Prints an integer in base 10.
* %u Prints an unsigned decimal (base 10) number.
* %x Prints a number in hexadecimal (base 16) lowercase format.
* %X Prints a number in hexadecimal (base 16) uppercase format.
* %% Prints a percent sign.
* Bonus: Manage all the following flags: ’# +’ (one of them is a space)