首页题库练习题目详情
C语言程序设计单选题中等

下列选项中,哪个是函数原型声明的正确写法?

Aint sum(int a, int b);
Bint sum(int a, int b)
Cint sum(int a, int b) { ... }
Dint sum(void);