fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4. main( )
  5. {
  6. int a ;
  7. a = 2 ;
  8. printf("変数 a の値は %d です", a );
  9. }
  10.  
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
変数 a の値は 2 です