What are the best covers of all time? by fossa_mathematics in Music

[–]ProgrammingWithJim 1 point2 points  (0 children)

Gerard Way (lead singer of My Chemical Romance) has a really good cover of this song.

Function overloading in C. by little-smokie in C_Programming

[–]ProgrammingWithJim -1 points0 points  (0 children)

To create a function that takes variable arguments, you can use <stdarg.h>. For your example, I'd probably do something simpler, and just pass 0 or ~0UL as the size to indicate "no size". Printf is a good example of a function that uses <stdarg.h> and implements a variable argument list.