00001 00002 // Praktikum Informatik 1 00003 // Versuch 5: Dynamische Datenstrukturen 00004 // 00005 // Datei: Student.h 00006 // Inhalt: Studentenstruktur mit Merkmalen eines Studenten 00008 00009 #ifndef STUDENT_H_ 00010 #define STUDENT_H_ 00011 00016 struct Student 00017 { 00019 string name; 00021 int matNr; 00023 string gebDatum; 00025 string adresse; 00026 }; 00027 00028 00029 #endif /*STUDENT_H_*/