fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int a = 5, b = 10, temp;
  5.  
  6. temp = a;
  7. a = b;
  8. b = temp;
  9.  
  10. printf("%d %d\n", a, b);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
10 5