Skip to content

inesmourato/printf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 

Repository files navigation

Printf

Recodes the printf function. Learned what is and how to implement variadic functions.

Requirements:

  • Create a library called libftprintf.a
  • Create a Makefile that contains the rules $(NAME), all, clean, fclean and re.

Conversions:

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

Recoding of printf function

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors