这个程序哪儿错了呀 ?为什么呀? 谢谢各位大侠指点。
# include "stdio.h"int max(int a,int b)
{
int c;
c=a>b?a:b;
return c ;
}
main()
{
int a,b ,c;
printf("please input two number");
scanf("%d%d",&a,&b);
printf("a=%d,b=%d",a,b);
c=int max(int a,int b);
printf("c=%d",c);
}