🗯️ Printf is a 42 school project. The goal of this project is to recode the printf() function in C language.
The instructions were given in the subject.
% | type |
---|---|
%c | character |
%s | string |
%p | pointer |
%d | decimal signed integer |
%i | integer |
%u | unsigned integer |
%x | hex integer (lowercase) |
%X | hex integer (uppercase) |
%% | just the % |