What will be the output of the following code?
Asked
0 years ago
Updated
11 months ago
Viewed
849 times
int x = 5;
if (x > 3 && x < 7)
x++;
else
x--;
Console.WriteLine(x);