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 : static function declaration in function scope
Remarks
With Microsoft extensions (/Ze), static functions can be declared inside another function. The function is given global scope.
Example
The following example generates C4205:
// C4205.c
// compile with: /W4
void func1()
{
static int func2(); // C4205
}
int main()
{
}
Such initializations are invalid under ANSI compatibility (/Za).