菜鸟的问题,求助各位
#include "stdio.h"
int max()
int x,y;
{
int z;
z=x>y?x:y;
return(z);
}
main()
{
extern int a,b;
printf ("%d",max(a,b));
}
int a=10,b=-8;
报错如下:
错误 e:\c-language\c-code\code02.c 3:说明语法错误
错误 e:\c-language\c-code\code02.c 4:说明语法错误
^_^不知道错在哪里?