/****************************************************************************** Online C Compiler. Code, Compile, Run and Debug C program online. Write your code in this editor and press "Run" button to compile and execute it. ***************************SWAP WITHOUT THIRD VARIABLE********************************/ #include int main() { int i,j; printf("Enter the i: "); scanf("%d",&i); printf("Enter the j: "); scanf("%d",&j); i=i-j; j=i+j; i = j-i; printf("i: %d\n",i); printf("j: %d\n",j); return 0; }