谁帮我解下这题
图片附件: 游客没有浏览图片的权限,请
登录 或
注册
#include <stdio.h>
#include <string.h>
float fun(float f, char s[])
{ /**/
/**/
}
void main()
{ float x,y;
char str[16];
printf("Input the fahrenheit temperature: ");
scanf("%f",&x);
y=fun(x,str);
printf("the celsius temperature: %f, %s\n",y,str);
getch();
}