VOOZH about

URL: https://www.geeksforgeeks.org/c/a-nested-loop-puzzle/

⇱ A nested loop puzzle - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

A nested loop puzzle

Last Updated : 23 Jul, 2025

Which of the following two code segments is faster? Assume that compiler makes no optimizations. 
 

Both code segments provide same functionality, and the code inside the two for loops would be executed same number of times in both code segments. 
If we take a closer look then we can see that the SECOND does more operations than the FIRST. It executes all three parts (assignment, comparison and increment) of the for loop more times than the corresponding parts of FIRST: 

  1. The SECOND executes assignment operations ( j = 0 or i = 0) 101 times while FIRST executes only 11 times.
  2. The SECOND does 101 + 1100 comparisons (i < 100 or j < 10) while the FIRST does 11 + 1010 comparisons (i < 10 or j < 100).
  3. The SECOND executes 1100 increment operations (i++ or j++) while the FIRST executes 1010 increment operation.

Below code counts the number of increment operations executed in FIRST and SECOND, and prints the counts.


Output
 Count in FIRST = 1010
 Count in SECOND = 1100

Below code counts the number of comparison operations executed by FIRST and SECOND


Output
 Count for FIRST 1021
 Count for SECOND 1201

Thanks to Dheeraj for suggesting the solution.
Please write comments if you find any of the answers/codes incorrect, or you want to share more information about the topics discussed above.
 

Comment
Article Tags: