How can I subtract two integers in C without the - operator?
-
Assembly (accumulator) style:
int result = a; result -= b;