Home sum of two number without using additional operator Monday, May 24, 2021 0 Sum of two number without using additional operator STUDY EVERTHING #include <stdio.h>#include <conio.h>int main(){ int x, y; printf("Enter a number: "); scanf("%d %d", &x, &y); while(y!=0 ){ x++; y--; } printf("sum is %d", x); return 0; } Facebook Twitter