写出下列程序运行的结果。
int a=3,b=8
max(int a,int b)
{int c;
c=a>b?a:b;
return(c);
}
main ()
{ int a=20;
printf(“%d”,max(a,b));
}
出自:西安石油大学-C语言程序设计