Skip to content

nikanyx/ft_printf

Repository files navigation

ft_printf

second project at 42 lisboa. start date 04/04/2022.

ft_printf
Because ft_putnbr() and ft_putstr() aren’t enough

Summary:
The goal of this project is pretty straightforward. You will recode printf().
You will mainly learn about using a variable number of arguments.

To implement:

  • %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.

About

Clone of the printf C function

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published