Napomena
Za pristup ovoj stranici potrebna je autorizacija. Možete se pokušati prijaviti ili promijeniti direktorije.
Za pristup ovoj stranici potrebna je autorizacija. Možete pokušati promijeniti direktorije.
label 'identifier' was undefined
Remarks
The label used by a goto statement does not exist in the function.
Example
The following example generates C2094:
// C2094.c
int main() {
goto test;
} // C2094
Possible resolution:
// C2094b.c
int main() {
goto test;
test:
{
}
}