What would be the output produced from the following statements? int i = 0; while (i <
Question:
What would be the output produced from the following statements?
int i = 0;
while (i < 0)
{
Write("{0}\t", i);
i++;
}
Write("{0}\t", i);
a. 0
b. an infinite loop
c. an error
d. 0 0
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: 9781285856872
5th Edition
Authors: Barbara Doyle
Question Posted: