Skip to content

Latest commit

 

History

History

0x10-variadic_functions

0x10. C - Variadic functions

Description

What you should learn from this project:

  • What are variadic functions
  • How to use va_start, va_arg and va_end macros
  • Why and how to use the const type qualifier

  • Write a function that returns the sum of all its parameters.
  • Write a function that prints numbers, followed by a new line.
  • Write a function that prints strings, followed by a new line.
  • Write a function that prints anything.
  • Write a 64-bit program in assembly that prints Hello, Holberton, followed by a new line.

Author