C Tanda Tanya

x == 3 ? x++ : x--;
// equivlant to: 
if (x == 3) { 
	x++; 
} 
else { 
	x--; 
} 
Embarrassed Eel