How do I add two numbers without using ++ or + or any other arithmetic operator?
It was a question asked a long time ago in some campus interview. Anyway, today some
You can use double negetive to add two integers for example:
int sum2(int a, int b){ return -(-a-b); }