Zolo interview question

How can you return 3 and 4 from a function when we pass 4 and 3 in that function respectively without using conditional statements.

Interview Answer

Anonymous

23 Nov 2018

void fun(int value){ return 12/value; }