logo

C Matrice di strutture

Perché utilizzare una serie di strutture?

Consideriamo il caso in cui dobbiamo memorizzare i dati di 5 studenti. Possiamo memorizzarlo utilizzando la struttura come indicato di seguito.

 #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); } 

Produzione

 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 

Nel programma sopra abbiamo memorizzato i dati di 3 studenti nella struttura. Tuttavia, la complessità del programma aumenterà se gli studenti sono 20. In tal caso dovremo dichiarare 20 variabili di struttura diverse e memorizzarle una per una. Questo sarà sempre difficile poiché dovremo dichiarare una variabile ogni volta che aggiungiamo uno studente. Anche ricordare il nome di tutte le variabili è un compito molto complicato. Tuttavia, c ci consente di dichiarare un array di strutture utilizzando il quale possiamo evitare di dichiarare le diverse variabili di struttura; possiamo invece creare una raccolta contenente tutte le strutture che memorizzano le informazioni di diverse entità.

Serie di strutture in C

Una serie di strutture in C può essere definito come la raccolta di più variabili di struttura in cui ciascuna variabile contiene informazioni su entità diverse. La matrice di strutture in C vengono utilizzati per archiviare informazioni su più entità di diversi tipi di dati. L'array di strutture è noto anche come raccolta di strutture.

c serie di strutture

Vediamo un esempio di un array di strutture che memorizza le informazioni di 5 studenti e le stampa.

 #include #include struct student{ int rollno; char name[10]; }; int main(){ int i; struct student st[5]; printf(&apos;Enter Records of 5 students&apos;); 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&lt;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++){>