求助:关于函数形参定义的一个小细节
最近,看谭浩强的结构体一章中,发现这样一句代码:程序代码:
void main() { void Print(struct stu*); .....//若干语句 } void Print(struct stu* p) { .... }其中第三行的部分,函数形参怎么这么表示?
PS:在VC上通过,无错误
[ 本帖最后由 Alen0128 于 2010-5-1 10:20 编辑 ]
void main() { void Print(struct stu*); .....//若干语句 } void Print(struct stu* p) { .... }其中第三行的部分,函数形参怎么这么表示?