函数方面的问题,请指教
#include"stdio.h"max(int x,int y)
{
int t;
if(x<y)
{
t=x;
x=y;
y=t;
}
return x;
}
void main()
{
int a,b,c;
printf("please enter two integers: ");
scanf("a=%d,b=%d",&a,&b);
c = max (a,b);
printf("%d\n",c);
}
这个程序没有错误,可是执行的结果就不对,请问哪里错了