fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int x=10,y=5;
  6. x=x+y;
  7. y=x-y;
  8. x=x-y;
  9. printf("x=%d , y=%d",x,y);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
x=5 , y=10