00001 00002 // Praktikum Informatik 1 00003 // Versuch 4.1: Dynamische Datenstrukturen 00004 // 00005 // Datei: Student.h 00006 // Inhalt: Studentenstruktur mit Merkmalen eines Studenten 00008 00009 #ifndef STUDENT_H_ 00010 #define STUDENT_H_ 00011 00012 00013 struct Student{ 00014 string name; 00015 int matNr; 00016 string gebDatum; 00017 string adresse; 00018 }; 00019 00020 00021 #endif /*STUDENT_H_*/