rwth-info2/versuch04 - teil2/Student.h

22 lines
476 B
C
Executable File

//////////////////////////////////////////////////////////////////////////////
// Praktikum Informatik 1
// Versuch 4.2: Dynamische Datenstrukturen
//
// Datei: Student.h
// Inhalt: Studentenstruktur mit Merkmalen eines Studenten
//////////////////////////////////////////////////////////////////////////////
#ifndef STUDENT_H_
#define STUDENT_H_
struct Student{
string name;
int matNr;
string gebDatum;
string adresse;
};
#endif /*STUDENT_H_*/