Mreis19 / Ft_Printf

A partial reimplementation of the printf in C. Handles only the following conversions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ft_Printf

A partial reimplementation of the printf in C. Handles only the following conversions.

Conversion Short Description

%c Print a single character.

%s Print a string of characters.

%p The void * pointer argument is printed in hexadecimal.

%d Print a decimal (base 10) number.

%i Print an integer in base 10.

%u Print an unsigned decimal (base 10) number.

%x Print a number in hexadecimal (base 16), with lowercase.

%X Print a number in hexadecimal (base 16), with uppercase.

%% Print a percent sign.

About

A partial reimplementation of the printf in C. Handles only the following conversions.


Languages

Language:C 66.5%Language:Makefile 33.5%