#include #include // function with variable number of arguments (...) int sum (int stev, ...) { va_list args; // variable arguments list int arg; int k, vsota=0; va_start(args, stev); //set the last parameter before variable arguments list for (k=0; k