程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C >> C語言基礎知識 >> 結構體數組的定義和引用(五)

結構體數組的定義和引用(五)

編輯:C語言基礎知識

2)指針法
若p指向數組的某一個元素,則p++就指向其後續元素。
3)指針的數組表示法
若p=student,我們說指針p指向數組student,p[i]表示數組的第i個元素,其效果與
student[i]等同。對數組成員的引用描述為:p[i].name、p[i].num等。
[例7-4]指向結構體數組的指針變量的使用。
structdata/*定義結構體類型*/
{
intday,month,year;
};
structstu/*定義結構體類型*/
{
char name[20];
long num;
struct data birthday;
};
main()
{inti;
structstu*p,student[4]={{"liying",1,1978,5,23},{"wangping",2,1979,3,14},
{"libo",3,1980,5,6},{"xuyan",4,1980,4,21}};
/*定義結構體數組並初始化*/
p=student;/*將數組的首地址賦值給指針p,p指向了一維數組student*/
printf("\n1----Outputname,number,year,month,day\n");
for(i=0;i<4;i++)/*采用指針法輸出數組元素的各成員*/
printf("%20s%10ld%10d//%d//%d\n",(p+i)->name,(p+i)->num,
(p+i)->birthday.year,(p+i)->birthday.month,
(p+i)->birthday.day);
}

 

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