20 likes | 184 Views
name. name. name. name. name. name. name. name. name. name. age. age. age. age. age. age. age. age. age. age. מערך של רשומות. בדומה להגדרת מערך של משתנים מטיפוס שלם או תווי ניתן להגדיר מערך של רשומות: typedef struct{ char name[20]; int age; }student_type;
E N D
name name name name name name name name name name age age age age age age age age age age מערך של רשומות בדומה להגדרת מערך של משתנים מטיפוס שלם או תווי ניתן להגדיר מערך של רשומות: typedef struct{ char name[20]; int age; }student_type; student_type st[10]; st הוא מערך של 20 רשומות כדלקמן: 0 1 2 3 4 5 6 7 8 9
מערך רשומות • דוגמה: • להלן תכנית אשר מגדירה וקולטת נתונים לתוך מערך תלמידים (student_type ). התכנית מדפיסה את שמו של התלמיד המבוגר ביותר. # include<stdio.h> typedef struct{ char name[20]; int age; }student_type; student_type st[20]; void main() { student_type st[10]; int I,maxage,maxindex; for(i=0;i<10;i++) { scanf(“%s”,st[i].name) scanf("%d",&st[i].age); } maxage=st[0].age; maxindex=0; for(i=0;i<10;i++) if(st[i].age>max_age) {max_age=st[i].age; max_index=I; } puts(":the oldest student is:") puts( st[max_index].name); }