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 π―.
