Google News
logo
C-Language - Interview Questions
What are Conditional Operators in C ?
Conditional operator is used to check a condition and Select a Value depending on the Value of the condition. 

Syntax :
Variable = (condition)? Value 1: Value 2:
Advertisement