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

bb.utils.contains yocto

make config vs oldconfig vs defconfig vs menuconfig vs savedefconfig

PR, PN and PV Variable in Yocto