C Puzzle-2

value = a? b: c

Write the code which implements the same logic without using conditional statements?


Answer:

value = (!!a)*b+(1-!!a)*c

Comments

Popular posts from this blog

Appending and Prepending in Yocto - +=, =+ vs .=, =.

ARM interview questions

Linux driver example for Per CPU Variable