记录详情

Wrong Answer

/in/foo.c: In function 'main':
/in/foo.c:4:15: warning: missing braces around initializer [-Wmissing-braces]
   int a[2][3]={1,2,3,4,5,6},n;
               ^
/in/foo.c:4:15: note: (near initialization for 'a')
/in/foo.c:8:22: warning: passing argument 1 of 'add' from incompatible pointer type [-Wincompatible-pointer-types]
     printf("%d ",add(a+n));
                      ^
/in/foo.c:5:7: note: expected 'int **' but argument is of type 'int (*)[3]'
   int add(int *p[3]);
       ^~~
/in/foo.c: In function 'add':
/in/foo.c:17:8: warning: assignment makes integer from pointer without a cast [-Wint-conversion]
     sum+=*(p+i);
        ^~
#'target_mem_ref' not supported by expression#'/in/foo.c: In function 'main':
/in/foo.c:17:10: warning:  is used uninitialized in this function [-Wuninitialized]
     sum+=*(p+i);
          ^~~~~~
/in/foo.c:4:7: note: 'a' was declared here
   int a[2][3]={1,2,3,4,5,6},n;
       ^
# 状态 耗时 内存占用
#1 Wrong Answer 1ms 228.0 KiB

信息

递交者
类型
自测
题目
P1029 比比谁更小
语言
C
递交时间
2021-11-29 17:24:47
评测时间
2021-11-29 17:24:47
评测机
分数
0
总耗时
1ms
峰值内存
228.0 KiB