fork download
  1. #define swap(a,b) a=a+b;b=a-b;a=a-b;
  2. void main()
  3. {
  4. int x=5,y=10;
  5. swap(x,y);
  6. printf("%d%d",x,y);
  7. }
Runtime error #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
105