记录详情

Compile Error

/in/foo.c: In function 'main':
/in/foo.c:13:13: warning: 'main' is normally a non-static function [-Wmain]
   13 |         int main() {
      |             ^~~~
/in/foo.c: In function 'main':
/in/foo.c:14:12: error: 'maxL' undeclared (first use in this function)
   14 |     char s[maxL];
      |            ^~~~
/in/foo.c:14:12: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:16:11: warning: implicit declaration of function 'strcspn' [-Wimplicit-function-declaration]
   16 |         s[strcspn(s, "\n")] = 0;
      |           ^~~~~~~
/in/foo.c:2:1: note: include '<string.h>' or provide a declaration of 'strcspn'
    1 | #include <stdio.h>
  +++ |+#include <string.h>
    2 | int main()
/in/foo.c:16:11: warning: incompatible implicit declaration of built-in function 'strcspn' [-Wbuiltin-declaration-mismatch]
   16 |         s[strcspn(s, "\n")] = 0;
      |           ^~~~~~~
/in/foo.c:16:11: note: include '<string.h>' or provide a declaration of 'strcspn'
/in/foo.c:31:5: error: 'cout' undeclared (first use in this function)
   31 |     cout<<"%s\n",s<<endl;
      |     ^~~~
/in/foo.c:31:21: error: 'endl' undeclared (first use in this function)
   31 |     cout<<"%s\n",s<<endl;
      |                     ^~~~
/in/foo.c:31:17: warning: left-hand operand of comma expression has no effect [-Wunused-value]
   31 |     cout<<"%s\n",s<<endl;
      |                 ^
/in/foo.c:14:10: warning: unused variable 's' [-Wunused-variable]
   14 |     char s[maxL];
      |          ^
/in/foo.c: In function 'main':
/in/foo.c:33:1: error: expected declaration or statement at end of input
   33 | }
      | ^
/in/foo.c: At top level:
/in/foo.c:13:13: warning: 'main' defined but not used [-Wunused-function]
   13 |         int main() {
      |             ^~~~

信息

递交者
类型
递交
题目
3-4 颠倒单词
比赛
2025年春 南师大《程序设计与竞赛》作业赛第三场
语言
C
递交时间
2025-03-22 20:32:18
评测时间
2025-03-22 20:32:18
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes