511
GB
The output of: int n=4; int count=0; for(int i=1;i<=n;i++) for(int j=1;j<=n;j++) if(i!=j) count++; cout<
IN
का आउटपुट: int n=4; पूर्णांक गिनती=0; for(int i=1;i
A
12
12
B
16
16
C
4
4
D
8
8
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English)
4*4=16 pairs; 4 same pairs (i==j); 16-4=12.
व्याख्या (हिन्दी)
4*4=16 जोड़े; 4 समान जोड़े (i==j); 16-4=12.