What will be the output of the following code?

Asked 1 year ago
Updated 1 year ago
Viewed 1079 times

0

int x = 5; 
if (x > 3 && x < 7) 
	x++; 
else 
	x--; 
Console.WriteLine(x);

0 Answer


Your Answer