# Exercise 3

Write output of this program. Answer it without running it in your IDE. Explain your answer.

 




for (int i = 0; i < 20; i = i + 5)
{
  Console.WriteLine(i);
}
1
2
3
4
Last Updated: Apr 22, 2020, 1:39 PM