結果
| 問題 |
No.9000 Hello World! (テスト用)
|
| ユーザー |
|
| 提出日時 | 2022-02-26 17:12:28 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 105 bytes |
| コンパイル時間 | 96 ms |
| コンパイル使用メモリ | 26,752 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-04 13:33:28 |
| 合計ジャッジ時間 | 1,638 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 4 |
コンパイルメッセージ
main.c: In function 'main':
main.c:4:20: warning: initialization of 'char' from 'char *' makes integer from pointer without a cast [-Wint-conversion]
4 | char yukicoder="Hello World!";
| ^~~~~~~~~~~~~~
ソースコード
#include <stdio.h>
int main(void)
{
char yukicoder="Hello World!";
printf("%s",yukicoder);
}