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

P163~

时间:2014-08-09 11:43:57      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:io   amp   type   ef   print   class   string   include   

#include<string.h>
#include<stdio.h>
struct node
	{
	int data;
	struct node *next;
	};
	typedef struct node MODETYPE;
main()
{	MODETYPE s1,s2,s3,*begin,*p;
	s1.data=100;
	s2.data=200;
	s3.data=300;
	begin=&s1;
	s1.next=&s2;
	s2.next=&s3;
	s3.next=NULL;
	p=begin;
	while(p)
	{	printf("%d",p->data);
			p=p->next;
	}
	printf("\n");
}

P163~,布布扣,bubuko.com

P163~

标签:io   amp   type   ef   print   class   string   include   

原文地址:http://blog.csdn.net/u013116579/article/details/38454027

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