/***************************************************************/ /* Verfasser: Prof. Dr. Gregor Büchel */ /* Source : Artikel5.h */ /* Zweck : Definition einer Artikel-Struktur in einer Header*/ /* Datei als komplexer Datentyp. */ /* Stand : 04.01.2014 */ /***************************************************************/ /* Struktur Artikel */ typedef struct {int anr; char bez[21]; double preis; } Artikel5;