Errore del compilatore C2063
'identifier': non è una funzione
L'identificatore viene usato, ma non è dichiarato, come funzione.
L'esempio seguente genera l'errore C2063:
// C2063.c
int main() {
int i, j;
j = i(); // C2063, i is not a function
}
Possibile soluzione:
// C2063b.c
int i() { return 0;}
int main() {
int j;
j = i();
}