Answers for "c question mark"

C
0

c question mark

x == 3 ? x++ : x--;
// equivlant to: 
if (x == 3) { 
	x++; 
} 
else { 
	x--; 
}
Posted by: Guest on November-20-2021

Code answers related to "c question mark"

Code answers related to "C"

Browse Popular Code Answers by Language