Computer Science, asked by rizulsharma1306, 7 months ago

How many times the loop will execute :- for (i=0; i<3; i++) { for (j=1; j<=3; j++) { ..............................}}


Answers

Answered by priyanshumishramps21
1

Answer:

3 times for (i=0; i<3; i++)

3 times for (j=1; j<=3; j++)

Similar questions