Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 1.24 KB

File metadata and controls

27 lines (19 loc) · 1.24 KB

ft_printf

My own printf function

Features

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

Testers Prints

Tripouille

App Screenshot

ft_printf tester

App Screenshot

Grade

App Screenshot