Output of following program?
#include<stdio.h>
void dynamic(int s, ...)
{
printf("%d", s);
}
int main()
{
dynamic(2, 4, 6, 8);
dynamic(3, 6, 9);
return 0;
}
2 3
Compiler Error
4 3
3 2
This question is part of this quiz :
C Functions