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