- 1
What is the out put?
int x = 42; int num = 0; while(num < 3) { Console.WriteLine(Ă) num++; }
4 Answers
+ 4
Whoops! Deddy is rigth.
+ 3
The output will be:
42
42
42
0
thanks just saw the comment with the explanation
0
After the execution of the following code,what is the output of the num?
int num = 10
Console.WriteLine (num++)
Console.WriteLine(++num)