前幾天寫了一個文章,叫怎麼創建一個鏈表,如今說,鏈表的另一個操作,怎麼打印出內容來。
廢話不說,直接跟上以前的代碼,寫出打印函數來。
void print(struct student *head)
{
struct student *p;
printf(“\n these %d records are:\n”,n);
p = head;
if(head != NULL)
do
{
printf(“%ld %f\n”,p->num,p->score);
p = p->next;
}while(p != NULL);
}
很簡單,效果跟上一篇一樣,那個也是通過這個函數打印出來的,
請關注 李木空間