Ternary Operator / Conditional Operator In C
Satish B
http://technotip.com/6416/ternary-operator-conditional-operator-in-c/
In this video tutorial we will show you how to use Conditional Operator. They are also called Ternary Operators as they take 3 arguments.
General Form of Ternary Operator (expression_1) ? (expression_2) : (expression_3);
expression_1 is a comparison/conditional argument. expression_2 is executed/returned if expression_1 results in true, expression_3 gets executed/returned if expression_1 is false.
C Programming Interview / Viva Q&A List http://technotip.com/6378/c-programming-interview-viva-qa-list/
C Programming: Beginner To Advance To Expert http://technotip.com/6086/c-programming-beginner-to-advance-to-expert/ ... https://www.youtube.com/watch?v=wubWvdcjMcw
5128254 Bytes