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

语法*第九章*7 简单静态链表的创建

时间:2018-05-01 23:39:09      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:pre   next   1.0   core   简单   code   span   \n   student   

#include<stdio.h>
struct student{
   int num;
   float score;
   struct student *next;
} ;
 int main(void){
  struct student stu1,stu2,stu3;  /*定义3个struct student 类型的变量*/
  struct student *head,*p;/*定义2个指向struct student的指针*/
  stu1.num=18001;stu1.score=99.0;
  stu2.num=18002;stu2.score=91.0;
  stu3.num=18003;stu3.score=92.0;
  head = &stu1;
  stu1.next=&stu2;
  stu2.next=&stu3;
  stu3.next=NULL;
  p=head;
  do{
     printf("%d%5.1f\n",p->num,p->score);
     p=p->next;
  }while(p!=NULL);
}

 

语法*第九章*7 简单静态链表的创建

标签:pre   next   1.0   core   简单   code   span   \n   student   

原文地址:https://www.cnblogs.com/sunnybowen/p/8977147.html

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