Proč používat řadu struktur?
Uvažujme případ, kdy potřebujeme uložit data 5 studentů. Můžeme jej uložit pomocí struktury, jak je uvedeno níže.
#include struct student { char name[20]; int id; float marks; }; void main() { struct student s1,s2,s3; int dummy; printf('Enter the name, id, and marks of student 1 '); scanf('%s %d %f',s1.name,&s1.id,&s1.marks); scanf('%c',&dummy); printf('Enter the name, id, and marks of student 2 '); scanf('%s %d %f',s2.name,&s2.id,&s2.marks); scanf('%c',&dummy); printf('Enter the name, id, and marks of student 3 '); scanf('%s %d %f',s3.name,&s3.id,&s3.marks); scanf('%c',&dummy); printf('Printing the details.... '); printf('%s %d %f ',s1.name,s1.id,s1.marks); printf('%s %d %f ',s2.name,s2.id,s2.marks); printf('%s %d %f ',s3.name,s3.id,s3.marks); }
Výstup
Enter the name, id, and marks of student 1 James 90 90 Enter the name, id, and marks of student 2 Adoms 90 90 Enter the name, id, and marks of student 3 Nick 90 90 Printing the details.... James 90 90.000000 Adoms 90 90.000000 Nick 90 90.000000
Ve výše uvedeném programu máme ve struktuře uložena data 3 studentů. Složitost programu se však zvýší, pokud bude 20 studentů. V takovém případě budeme muset deklarovat 20 různých strukturních proměnných a uložit je jednu po druhé. To bude vždy obtížné, protože budeme muset deklarovat proměnnou pokaždé, když přidáme studenta. Pamatovat si jména všech proměnných je také velmi ošemetný úkol. Nicméně, c nám umožňuje deklarovat pole struktur, pomocí kterých se můžeme vyhnout deklarování různých strukturních proměnných; místo toho můžeme vytvořit kolekci obsahující všechny struktury, které uchovávají informace různých entit.
Pole struktur v C
Řada struktur v C lze definovat jako soubor proměnných více struktur, kde každá proměnná obsahuje informace o různých entitách. Pole struktury v C se používají k ukládání informací o více entitách různých datových typů. Pole struktur je také známé jako kolekce struktur.
Podívejme se na příklad pole struktur, které ukládají informace o 5 studentech a vytisknou je.
#include #include struct student{ int rollno; char name[10]; }; int main(){ int i; struct student st[5]; printf('Enter Records of 5 students'); for(i=0;i<5;i++){ printf(' enter rollno:'); scanf('%d',&st[i].rollno); name:'); scanf('%s',&st[i].name); } printf(' student information list:'); for(i="0;i<5;i++){" printf(' rollno:%d, name:%s',st[i].rollno,st[i].name); return 0; < pre> <p> <strong>Output:</strong> </p> <pre> Enter Records of 5 students Enter Rollno:1 Enter Name:Sonoo Enter Rollno:2 Enter Name:Ratan Enter Rollno:3 Enter Name:Vimal Enter Rollno:4 Enter Name:James Enter Rollno:5 Enter Name:Sarfraz Student Information List: Rollno:1, Name:Sonoo Rollno:2, Name:Ratan Rollno:3, Name:Vimal Rollno:4, Name:James Rollno:5, Name:Sarfraz </pre> <hr></5;i++){>
5;i++){>