Skip to content

iboukhss/ft_printf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

📄 ft_printf

📋 Summary

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 :)

  • Version 10

✨ Features

Flag Description Implemented?
# Alternate form
0 Zero padding
- Left adjusted (right padded)
(space) Blank sign for positive numbers
+ Force + sign for positive numbers
Specifier Description Implemented?
d, i Decimal int
o Octal unsigned int
u Decimal unsigned int
x, X Hexadecimal unsigned int
e, E double
f, F double
g, G double
a, A Hexadecimal double
c unsigned char character
s const char * string
p void * pointer
m errno (glibc extension)
% A % is written

❤️ Useful ressources

About

Basic printf implementation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published