Skip to content

Latest commit

 

History

History

0x10-variadic_functions

0x10. C - Variadic functions

Resources:books:

Read or watch:


Learning Objectives:bulb:

What I learned 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

  • A function that returns the sum of all its parameters.
  • A function that prints numbers, followed by a new line.
  • A function that prints strings, followed by a new line.
  • A function that prints anything.

Author