/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

来源:1-1 初始C语言

慕粉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

写回答 关注

1回答

  • Stek
    2017-01-09 00:16:54
    已采纳

    void ff(int n;int a[]) 改为 void ff(int n ,int a[]) 

    慕粉26

    非常感谢!

    2017-02-14 14:18:44

    共 1 条回复 >

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926026 学习 · 20793 问题

查看课程

相似问题