Skip to content

The goal of this project is pretty straightforward. You will recode printf(). You will mainly learn about using a variable number of arguments. How cool is that?? It is actually pretty cool :)

Notifications You must be signed in to change notification settings

Seraph919/ft_printf

Repository files navigation

✅ ft_printf

Grade

printf

Description

This project is made in accordance with the requirements of the school of programming 21 (42 school).
The main task in this project is to implement individual components of the original printf function.
List of conversions that I implemented in the code:

Specifier Description Example
Output any character from an ASCII table '$'
%s Output an array of characters with a null-terminating character at the end ('\0') "Hello World!"
%p Output of the pointer address 0xfff000bd8
%d and %i Output of an integer in decimal notation 1488
%u Output of an unsigned integer in the decimal system 3000000000
%x Output an unsigned integer in hexadecimal notation 15e20a
%X Output an unsigned integer in hexadecimal notation 15E20A
%% Output of the '%' sign %

About

The goal of this project is pretty straightforward. You will recode printf(). You will mainly learn about using a variable number of arguments. How cool is that?? It is actually pretty cool :)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published