We want to print the number i from 1 to 100 inclusive, where the printout starts with 1 and ends with 100. Which is the correct for loop?
1) for (int i = 0; i ≤ 100; ++i)
2) for (int i = 1; i < 100; ++i)
3) for (int i = 0; i < 100; ++i)
4) for (int i = 1; i ≤ 100; ++i)
5) None of the above