下列给定的程序中,函数fun()的功能是:求输入的两个数中较小的数。
例如:输入5 10,结果为min is 5。
[注意] 部分源程序给出如下。
请勿改动主函数main和其他函数中的任何内容,仅在函数fun的横线上填入所编写的若干表达式或语句。
[试题源程序]
#include <stdio.h>
#include <conio.h>
int fun(int x, (1) ;
int z;
z=x<y (2) x:y;
return(z);
main()
int a, b, c;
scanf("%d, %d\n", (3) );
c=fun(a, b);
printf("min is%d:, c);