评测信息

运行ID: 1341
src.c: In function 'main':
src.c:5:15: error: 'max' redeclared as different kind of symbol
int a,b,c,max;
^
src.c:4:9: note: previous declaration of 'max' was here
int max(int x,int y);
^
src.c:7:13: error: called object 'max' is not a function or function pointer
max=max(max(a,b),c);
^
src.c:5:15: note: declared here
int a,b,c,max;
^
src.c:7:9: error: called object 'max' is not a function or function pointer
max=max(max(a,b),c);
^
src.c:5:15: note: declared here
int a,b,c,max;
^