Skip to content

📠 Function that mimic a real C function - printf.

Notifications You must be signed in to change notification settings

Fuse23/ft_printf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ft_printf

My implementation of the printf function, and with flags:

  • %c Prints one character.
  • %s Prints a string (as defined by the general convention C).
  • %p The void pointer argument * must be printed in hexadecimal format.
  • %d Outputs a decimal number (base 10).
  • %i Outputs an integer in base 10.
  • %u Prints an unsigned decimal number (base 10).
  • %x Prints a number in hexadecimal format (base 16) in lowercase.
  • %X Prints a number in hexadecimal format (base 16) in uppercase.
  • %% Displays the percent sign.

More about project in subject.

My score: falarm's 42 ft_printf Score

About

📠 Function that mimic a real C function - printf.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published