Answers for "ternary operator c"

C
1

ternary operator in c

c = (a < b) ? a : b;
Posted by: Guest on February-10-2021
1

C Ternary Operator

Condition ?  expression-if-true ;  expression-if-false
  
//Here, '?' and ':' are Ternary Operators
Posted by: Guest on August-21-2021

Code answers related to "C"

Browse Popular Code Answers by Language