Why can't we use return keyword inside ternary operators in C, like this: sum > 0 ? return 1 : return 0;
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
Because a ternary operation is an expression and you can't use statements in expresssions. You can easily use a ternary operator in a return though.
Or as DrDipShit pointed out:
|
|||||||
|
|
Because |
|||
|
|
|
See the syntax of a ternary operator is
where expr1,expr2,expr3 are expressions; The opertaor ?: works as follows expr1 is evaluated first if it is true expr2 is evluated otherwise expr3 is evluated. hence in expressions the return statement can not be used in C-language. thanks Kolla Sanjeeva ra |
|||||
|
return sum > 0 ? 1 : 0;? – Paul Tomblin Aug 25 '10 at 13:42if (sum > 0) return 1 ; else return 0 ;– Pascal Cuoq Aug 25 '10 at 13:46return sum > 0;? – Charles Bailey Aug 25 '10 at 13:47