慕粉26
2017-01-08 23:31
/249/5095/F0ep/hello.c:3:13: error: parameter 'n' has just a forward declaration
void ff(int n;int a[])
^
/249/5095/F0ep/hello.c: In function 'ff':
/249/5095/F0ep/hello.c:7:13: error: 'n' undeclared (first use in this function)
for(i=0;i
void ff(int n;int a[]) 改为 void ff(int n ,int a[])
C语言入门
926026 学习 · 20793 问题
相似问题