fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int a;
  8. int b;
  9. a = 2;
  10. b = 3;
  11. a = b;
  12.  
  13. printf("%d\n" , a);
  14.  
  15. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
3