Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.48 KB

README.md

File metadata and controls

34 lines (28 loc) · 1.48 KB

42_ft_printf

Description

This project consists of recoding a simplified version of printf() function.

The following conversions are implemented:

Conversion Description
%c Prints a single character.
%s Prints a string
%p Prints a void * pointer in hexadecimal format
%d Prints a decimal number
%i Prints an integer
%u Prints an unsigned decimal number
%x Prints a hexadecimal number in lower case
%X Prints a hexadecimal number in upper case
%% Prints the percentage symbol

Prerequisites

  • Nothing needed

Usage

  • make for creating libftprintf.a library

Lessons

  • Variadic arguments

Resources