有关函数的声明!1.struct student *create()一般的像这种声明create()括号里什么也没有表示什么意思。[解
有关函数的声明!
1.struct student *create();
一般的像这种声明create()括号里什么也没有表示什么意思。
[解决办法]
相当于struct student *create(void );
即函数不需要传递实际参数
有关函数的声明!
1.struct student *create();
一般的像这种声明create()括号里什么也没有表示什么意思。
[解决办法]
相当于struct student *create(void );
即函数不需要传递实际参数