結果

問題 No.9000 Hello World! (テスト用)
ユーザー neeetneeet
提出日時 2017-06-13 17:45:15
言語 C
(gcc 12.3.0)
結果
RE  
実行時間 -
コード長 69 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 25,016 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-24 21:48:18
合計ジャッジ時間 890 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'main':
main.c:3:9: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
    3 |         printf("Hello World!\n");
      |         ^~~~~~
main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf'
  +++ |+#include <stdio.h>
    1 | void main(void)
main.c:3:9: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch]
    3 |         printf("Hello World!\n");
      |         ^~~~~~
main.c:3:9: note: include '<stdio.h>' or provide a declaration of 'printf'

ソースコード

diff #

void main(void)
{
        printf("Hello World!\n");
        return;
}
0