結果
| 問題 |
No.9000 Hello World! (テスト用)
|
| ユーザー |
|
| 提出日時 | 2017-06-13 17:45:15 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 69 bytes |
| コンパイル時間 | 113 ms |
| コンパイル使用メモリ | 25,344 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-24 16:58:21 |
| 合計ジャッジ時間 | 499 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 4 |
コンパイルメッセージ
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'
ソースコード
void main(void)
{
printf("Hello World!\n");
return;
}