1 / 2

בדומה להגדרת מערך של משתנים מטיפוס שלם או תווי ניתן להגדיר מערך של רשומות: typedef struct{

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;

haruko
Download Presentation

בדומה להגדרת מערך של משתנים מטיפוס שלם או תווי ניתן להגדיר מערך של רשומות: typedef struct{

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 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

  2. מערך רשומות • דוגמה: • להלן תכנית אשר מגדירה וקולטת נתונים לתוך מערך תלמידים (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); }

More Related