Skip to content

Latest commit

 

History

History

0x0F-variadic_functions

0x0F. 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.

Author