码迷,mamicode.com
首页 > 其他好文 > 详细

《建立一个静态链表》

时间:2015-09-11 19:02:22      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

#include<stdio.h>
 
//定义结构体
struct Student
{
int num;
float score;
struct Student *next;
};
 
int main()
{
struct Student a,b,c,*head,*p;
a.num=101;a.score=89;
b.num=102;b.score=97;
c.num=103;c.score=85;
head=&a;
a.next=&b;
b.next=&c;
c.next=NULL;
p=head;
do
{
printf("%ld %5.1f\n",p->num,p->score);
p=p->next;
}while(p!=NULL);
return 0;
}

 

《建立一个静态链表》

标签:

原文地址:http://www.cnblogs.com/sun-/p/4801679.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!