Write a program in C to add two numbers without using any maths operator (+, -, /, *).
Anonymous
int sum(int x, int y) { if( x == y) return (x << 1); else return (x ^ y); } see complete program at http://www.ssiddique.info/add-two-numbers-without-using.html
Check out your Company Bowl for anonymous work chats.