C语言中的错误
我在主函数之外的源文件中有两个子函数,编译时,每一个子函数文件头处都有如下错误:conv.h(2):errorC2143:syntaxerror:missing')'be...
我在主函数之外的源文件中有两个子函数,编译时,每一个子函数文件头处都有如下错误:
conv.h(2) : error C2143: syntax error : missing ')' before 'constant'
conv.h(2) : error C2143: syntax error : missing '{' before 'constant'
conv.h(2) : error C2059: syntax error : '<Unknown>'
conv.h(2) : error C2059: syntax error : ')'
子程序如下:
#include <stdio.h>
void conv(float x[],int m,float h[],int n,float y[],int l,float dt)
{
int k,i;
for(k=0;k<l;k++)
{
y[k]=0.0;
for(i=0;i<m;i++)
if(k-i>=0&&k-i<=n-1)
y[k]=y[k]+x[i]*h[k-i]*dt;
}
}
感觉
void conv(float x[],int m,float h[],int n,float y[],int l,float dt)语句中也没有少什么啊,为什么总有错误,是因为主函数里少了什么吗,求助啊,各位高手 展开
conv.h(2) : error C2143: syntax error : missing ')' before 'constant'
conv.h(2) : error C2143: syntax error : missing '{' before 'constant'
conv.h(2) : error C2059: syntax error : '<Unknown>'
conv.h(2) : error C2059: syntax error : ')'
子程序如下:
#include <stdio.h>
void conv(float x[],int m,float h[],int n,float y[],int l,float dt)
{
int k,i;
for(k=0;k<l;k++)
{
y[k]=0.0;
for(i=0;i<m;i++)
if(k-i>=0&&k-i<=n-1)
y[k]=y[k]+x[i]*h[k-i]*dt;
}
}
感觉
void conv(float x[],int m,float h[],int n,float y[],int l,float dt)语句中也没有少什么啊,为什么总有错误,是因为主函数里少了什么吗,求助啊,各位高手 展开
展开全部
你这句话我编译了,没错,可以通过,估计是你其他的程序出错了吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
主程序里错误,或者其头文件里
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你用的是VC吗
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询