Question: Which line of code, after execution, results in `i` having the value of 1?
- `for(i=1; i<=1; i++);`
 - `for(i=1; i=10; i++);`
 - `for(i=1; i==10; i++);`
 - `for(i=10; i>=1; i--);`
 
Answer: The correct answer of the above question is Option C:`for(i=1; i==10; i++);`