1
GB
What is the output: for(int i=0;i<5;i++) if(i==3) continue; cout<
IN
आउटपुट क्या है: for(int i=0;i
A
01245
01245
B
01234
01234
C
Compile error
संकलन त्रुटि
D
0124
0124
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English)
i is declared inside for; it's not accessible after the loop. Compile error.
व्याख्या (हिन्दी)
i के लिए अंदर घोषित किया गया है; यह लूप के बाद पहुंच योग्य नहीं है। संकलन त्रुटि.