+ 2
Whats mean by '?' in a program ?
4 Answers
+ 14
It is a ternary conditional operator
A ? B : C
Above combination forms a ternary operation and is equivalent to
if (A)
B
else
C
+ 1
It is the ternary or conditional operator.
+ 1
@Ace i have done till functions