Introduction
Variadic functions are functions that may take a variable number of arguments and are declared with ellipses (...) in place of the last parameter.
In C programming, the function must contain at least one named parameter:
int right(int a,...