问一个C语言里面的错误啊,argument of type "float" is incompatible with p
来源:学生作业帮 编辑:神马作文网作业帮 分类:综合作业 时间:2024/11/16 21:18:25
问一个C语言里面的错误啊,argument of type "float" is incompatible with parameter of type "float *"
数组的首地址不能直接加符号*当指针来用吗?这样定义
void brmul(float *a,float *b,CHAR m,CHAR n,CHAR k,float *c)
这样调用brmul(*D3T,*APC_y1,3,APC_M,1,*APC_s0);其中
D3T,APC_y1,APC_s0 都是数组名,APC_M是宏定义的整数20
数组的首地址不能直接加符号*当指针来用吗?这样定义
void brmul(float *a,float *b,CHAR m,CHAR n,CHAR k,float *c)
这样调用brmul(*D3T,*APC_y1,3,APC_M,1,*APC_s0);其中
D3T,APC_y1,APC_s0 都是数组名,APC_M是宏定义的整数20
这样调用brmul(D3T,APC_y1,3,APC_M,1,APC_s0);
再问: 不行哎。。。,反而多了一个错误 argument of type "float (*)[3]" is incompatible with parameter of type "float *"
再答: 把你 D3T,APC_y1,APC_s0 定义贴出来
再问: 算了,我已经解决了。 APC_y1,APC_s0是一位数组,改成二维数组,即后面加[1]就可以了。不知道为啥。。。
再问: 不行哎。。。,反而多了一个错误 argument of type "float (*)[3]" is incompatible with parameter of type "float *"
再答: 把你 D3T,APC_y1,APC_s0 定义贴出来
再问: 算了,我已经解决了。 APC_y1,APC_s0是一位数组,改成二维数组,即后面加[1]就可以了。不知道为啥。。。
问一个C语言里面的错误啊,argument of type "float" is incompatible with p
格式 ‘%f’ expects argument of type ‘float *’,but argument 2 ha
求一元二次方程的根编写一个函数void root(float a,float b,float c,float *p,fl
C语言的一个问题#include #include int main(){float a,b,c,disc,p,q,x1
c语言错误:'FILE' :illegal use of this type as an expression这是神马情
C语言错误 left of '.name' must have struct/union type
Violence is incompatible with the nature of God and the natu
your monitor's aspect ratio of 683:384 is incompatible with
the version of the game you are running is incompatible with
c语言找错误#include #include #includefloat area (float a,float b,
be incompatible with的中文意思
float a=1.0f 这里的1.0f中的“f”代表什么,在C语言里面,