c语言共同体使用时需要声明头文件吗,以下是我的程序,编译时有错误,请指教

voidfloat_char(floatf,uchar*s){unionchange{floatd;uchardat[4];}temp;temp.d=f;*s=temp.... void float_char(float f,uchar *s)
{
union change
{
float d;
uchar dat[4];
}temp;
temp.d = f;
*s = temp.dat[0];
*(s+1) = temp.dat[1];
*(s+2) = temp.dat[2];
*(s+3) = temp.dat[3];

}
void main( )
{float x0;
float_char(x0,uchar *s)
}
编译时总是提示最后一句中:
type error in argument 2 to 'float_char';found 'unsigened char'expected 'pointer to unsigened char'
展开
 我来答
忘至白葬不情必0T
2012-01-11 · TA获得超过3万个赞
知道大有可为答主
回答量:1.1万
采纳率:90%
帮助的人:1.2亿
展开全部
调用有误,uchar *s是函数声明中的参数声明的形式,你调用时必须要传个实参给它。
比如
float x0;
uchar c[4];
float_char(x0,c);
zhuweigangzwg
2012-01-11
知道答主
回答量:12
采纳率:0%
帮助的人:4.7万
展开全部
#include <stdio.h>
#include <string.h>

union change
{
float d;
char dat[4];
}temp;

void float_char(float f,char *s)
{
temp.d = f;
*s = temp.dat[0];
*(s+1) = temp.dat[1];
*(s+2) = temp.dat[2];
*(s+3) = temp.dat[3];

}
int main( )
{
char s[4];
memset(s,'c',4);
float f = 1.0;
float_char(f,s);
printf("%.0f\n",temp.d);
printf("%c\n",temp.dat[0]);
printf("%c\n",temp.dat[1]);
printf("%c\n",temp.dat[2]);
printf("%c\n",temp.dat[3]);
getchar();
return getchar();
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
zero_fn
2012-01-11 · TA获得超过2258个赞
知道小有建树答主
回答量:1173
采纳率:80%
帮助的人:457万
展开全部
void main( )
{float x0;
float_char(x0,uchar *s) //s未定义,调用格式不对, 调用不要加uchar *
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
洪强静静
2012-01-11 · TA获得超过3585个赞
知道小有建树答主
回答量:9738
采纳率:25%
帮助的人:2749万
展开全部
main( )
{float x0;
float_char(x0,uchar *s)
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2012-01-11
展开全部
float_char(x0,uchar *s)

uchar *s;
float_char(x0,s)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式