c 언어 데이터 구조 링크 인 스 턴 스

595 단어
//c            
#include 
#include 
/*        */
struct l{
	int data;  
	char a[20];
	struct l *y; //     
};
int main()
{
	struct l a = { 1,"  ",NULL }; //       
	struct l b = { 2,"  ",NULL }; //       
	struct l c = { 2,"  ",NULL }; //       
	a.y = &b; //            
	b.y = &c;//            
	struct l *t =&a;//         
	while (t != NULL)//         NULL      
	{
		printf("%d\t%s
", t->data, t->a); t = t->y; // } system("pause"); return 0; }

좋은 웹페이지 즐겨찾기