fork download
  1. /* kadai011 */
  2. /* これは最初の練習プログラムです。 */
  3. /* "Hello World!"と表示します。 */
  4. /* 2017.09.20 H.Arai */
  5. #include <stdio.h>
  6. int main(void) {
  7. printf("Hello World!"); /* printf()が出力処理 */
  8. return 0;
  9. }
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
Hello World!