fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int A;
  6. int B;
  7. int C;
  8. A=10;
  9. B=4;
  10. C=A;
  11. A=B;
  12. B=C;
  13. printf("%d %d", B,A);
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
10 4