76
GB
What is the output: for(int i=0;i<3;i++) {for(int j=0;j<3;j++) {if(j==2) continue; cout<
IN
आउटपुट क्या है: for(int i=0;i
A
01 34 67
01 34 67
B
013467
013467
C
Compile error
संकलन त्रुटि
D
Undefined
अपरिभाषित
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English)
i=0:j=0:0,j=1:1,j=2:skip; i=1:3,4,skip; i=2:6,7,skip. Output: 013467.
व्याख्या (हिन्दी)
i=0:j=0:0,j=1:1,j=2:छोड़ें; मैं=1:3,4,छोड़ें; मैं=2:6,7,छोड़ें। आउटपुट: 013467.