Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
nonstandard extension used : function declaration used ellipsis
The function prototype has a variable number of arguments. The function definition does not.
The following sample generates C4212:
// C4212.c
// compile with: /W4 /Ze /c
void f(int , ...);
void f(int i, int j) {}