程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C經典之12-用鏈表存1-10的數字---ShinePans

C經典之12-用鏈表存1-10的數字---ShinePans

編輯:關於C語言

\


<喎?http://www.Bkjia.com/kf/ware/vc/" target="_blank" class="keylink">vcD4KPHA+PHByZSBjbGFzcz0="brush:java;">#include #include #include //system(); 這個指令需要用到此頭文件 #include //toupper要用到 #include //在內存管理時用到的頭文件 void main() { int i; struct ListEntry { int number; struct ListEntry *next; } start, *node; start.next = NULL; // Empty list node = &start; // Point to the start of the list for (i = 1; i <= 10; i++) { node->next = (struct ListEntry *) malloc(sizeof(struct ListEntry)); node = node->next; node->number = i; node->next = NULL; } // Display the list node = start.next; while (node) { printf("%d ", node->number); node = node->next; } system("pause"); }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved