What will be the output of this code?
#include stdio.h
#include stdarg.h
int f(...);
int main()
{
char g = 2;
f(g);
return 0;
}
int f(...)
{
va_list li;
char g = va_arg(li, char);
printf("%g\n", g);
}

Posted on by