The Purpose Of This Project It Is Knowing how to create a program similar to a printf well-known function in a language C and knowing its properties and how it work.
Mandatory Part 👨🏻💻
%s : For Print A String Into The Stendard Output [1] 🔰
%c : For Print A Character Into The Standard Output [1]. 🔰
%d : For Print Decimal Format Into The Standard Output [1]. 🔰
%x : For Print With Hexadecimal (Base 16) Format (Lowercase) Into The Standard Output [1]. 🔰
%X : For Print With Hexadecimal (Base 16) Format (Upper-Case) Into The Standard Output [1]. 🔰
%p : For Print (Void *) With Hexadecimal Into The Standard Output [1]. 🔰
%u : For Print Unsigned Decimal (Base 10) Into The Standard Output [1] . 🔰
%i : For Print Integer Into The Standard Output [1]. 🔰
Bonus Part 👨🏻💻
'+' : Print The Sign (+ or -) Before The Number. 🔰
'Space' : Print a space before a positive value not printed with the + flag. 🔰
'#' : Print The 0x Before The Hexadecimal (Base 16). 🔰
In This Project I Saw The Varidiac Functions And Their Features It Is Great Type Of Functions It is capable of receiving an unlimited number Of The Argument it Is useful Type Of Functions 💯.