结构体的用法 和 void的概念
关于void的具体概念 那位高手给个指点?还有
void print(struct student *head)
{struct student *p;
....
}
和
void print()
{struct student *p;
struct student *head;
....
}
的区别
2007-03-25 17:39
2007-03-25 18:19
结构体是一种自己定义的类型,就像int,float一样
2007-03-27 20:36