What does a question mark (?) in C mean?
|
|
|
|||
|
|
|
Additionnally with other answers, ? can be part of a trigraph |
|||
|
|
That’s probably a part of the ternary operator:
|
|||
|
|
This is a so called conditional operator. You can shorten your if else statement with this operator. The following link should explain everything http://www.crasseux.com/books/ctutorial/The-question-mark-operator.html |
|||
|
|
|
It is a conditional operator. For example refer the below link http://en.wikipedia.org/wiki/Conditional_operator |
|||
|
|
|
This is a ternary Operator which is conditional operator uses like if-else example
Usage: Syntax of ?: is
|
||||
|
|
|
Its the |
|||
|
|