What would be the output produced from the following statements? int aValue = 1; do { aValue++;
Question:
What would be the output produced from the following statements?
int aValue = 1;
do
{
aValue++;
Console.Write(aValue++);
} while (aValue < 3);
a. 23
b. 234
c. 1234
d. 2
e. none of the above
Fantastic news! We've Found the answer you've been seeking!
Step by Step Answer:
Related Book For
C# Programming From Problem Analysis To Program Design
ISBN: 9781285096261
4th Edition
Authors: Barbara Doyle
Question Posted: