#include using namespace std; struct student { string imie; string nazwisko; char plec; int nr_pesel; int nr_indeksu; }; void display_student(student &student1) { cout<>student1.imie>>student1.nazwisko>>student1.plec>>student1.nr_pesel>>student1.nr_indeksu; //display_student(student1); int n=3; student osoba[n]; osoba[0].imie="ma"; osoba[0].nazwisko="to"; osoba[0].plec='m'; osoba[0].nr_pesel=12; osoba[0].nr_indeksu=3413; osoba[1].imie="na"; osoba[1].nazwisko="lllo"; osoba[1].plec='r'; osoba[1].nr_pesel=133332; osoba[1].nr_indeksu=3123; osoba[2].imie="po"; osoba[2].nazwisko="co"; osoba[2].plec='m'; osoba[2].nr_pesel=112122; osoba[2].nr_indeksu=3; display_all_studnet(osoba,n); }