Notiz
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Iech unzemellen oder Verzeechnesser ze änneren.
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Verzeechnesser ze änneren.
function returns array
Remarks
A function cannot return an array. Return a pointer to an array instead.
Example
The following example generates C2090:
// C2090.cpp
int func1(void)[] {} // C2090
Possible resolution:
// C2090b.cpp
// compile with: /c
int* func2(int * i) {
return i;
}