What will be the output of the C#.NET code snippet given below?
int num = 1, z = 5;
if (!(num <= 0))
Console.WriteLine( ++num + z++ + " " + ++z );
else
Console.WriteLine( --num + z-- + " " + --z ); 1.5 6
2.6 5
3.6 6
4.7 7
Posted Date:-2021-02-25 10:28:15