小白刚学函数有一些问题求解答
#include <stdio.h>int main()
{
int max(float x ,float y);
float a , b;
int c;
scanf("%f , %f", &a, &b);
c = max(a, b);
printf("Max is %d\n",c);
}
int max(float x, float y)//没有;
{
float z;
z= x > y ? x : y;
return z;
}
请问底下的int max 部分意义何在?
还要为啥return z?