Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
nonstandard extension used : '...': prototype parameter in name list illegal
Remarks
An old-style function definition contains variable arguments. These definitions generate an error under ANSI compatibility (/Za).
Example
The following example generates C4202:
// C4202.c
// compile with: /W4
void func( a, b, ...) // C4202
int a, b;
{}
int main()
{
}