How can I subtract two integers in C without the - operator?
-
void main() { int a=5; int b=7; while(b--)a--; printf("sud=%d",a); }