int ctr = 0;
for(int i=1;i<5;i++)
for(int j=1;i<=5;j+=2)
++ctr;
with explanation pls
Answers
Answered by
2
Answer:
3
Explanation:
Check for the incrementation of j in each loop
Similar questions