إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
'identifier' : label redefined
Remarks
The label appears before multiple statements in the same function.
Example
The following example generates C2045:
// C2045.cpp
int main() {
label: {
}
goto label;
label: {} // C2045
}