问题详情
#include
void prt_char(float x);
int main()
{
int G=5,k;
......
k=prt_char(G);
return 0;
}
int prt_char(int x)
A.函数prt_char(int x)定义的位置不对,不能放在主函数main()的后面。
B.函数名不能使用下划线
C.函数原型和函数定义不匹配
D.变量名不能使用大写字母