int counter = 0;while (counter < 100){ Console.WriteLine(counter); counter++;}
The last value printed with the above program segment is ____.
A. 0
B. 1
C. 99
D. 100
Answer: C
Computer Science & Information Technology