Submission #00115
ソースコード
ステータス
項目 |
データ |
問題 |
0008 - 月火 |
ユーザー名 |
ei1710
|
投稿日時 |
2019-05-27 17:35:54 |
言語 |
C |
状態 |
Compile Error |
得点 |
0
|
ソースコード長 |
270 Byte |
最大実行時間 |
-
|
最大メモリ使用量 |
|
コンパイルメッセージ
./Main.c: In function ‘main’:
./Main.c:3:9: warning: implicit declaration of function ‘malloc’ [-Wimplicit-function-declaration]
int *s=malloc(4);
^~~~~~
./Main.c:3:9: warning: incompatible implicit declaration of built-in function ‘malloc’
./Main.c:3:9: note: include ‘<stdlib.h>’ or provide a declaration of ‘malloc’
./Main.c:1:1:
+#include <stdlib.h>
int main()
./Main.c:3:9:
int *s=malloc(4);
^~~~~~
./Main.c:18:2: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration]
printf("%d\n",*(p+atoi(gets(s)));
^~~~~~
./Main.c:18:2: warning: incompatible implicit declaration of built-in function ‘printf’
./Main.c:18:2: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
./Main.c:1:1:
+#include <stdio.h>
int main()
./Main.c:18:2:
printf("%d\n",*(p+atoi(gets(s)));
^~~~~~
./Main.c:18:20: warning: implicit declaration of function ‘atoi’ [-Wimplicit-function-declaration]
printf("%d\n",*(p+atoi(gets(s)));
^~~~
./Main.c:18:25: warning: implicit declaration of function ‘gets’ [-Wimplicit-function-declaration]
printf("%d\n",*(p+atoi(gets(s)));
^~~~
./Main.c:18:34: error: expected ‘)’ before ‘;’ token
printf("%d\n",*(p+atoi(gets(s)));
^
)
./Main.c:20:11: error: expected ‘;’ before ‘}’ token
return 0;
^
;
}
~
セット
テストケース