Thread Probleme mit struct (9 answers)
Opened by renee at 2004-04-23 16:44

esskar
 2004-04-23 17:28
#10938 #10938
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
Code: (dl )
1
2
3
4
5
6
struct TelBuchEintrag {
char *name;
char *telNummer;

struct TelBuchEintrag *nextEintrag;
};


besser

Code: (dl )
1
2
3
4
5
6
typedef struct tagTelBuchEintrag {
char *name;
char *telNummer;

struct tagTelBuchEintrag *nextEintrag;
} TelBuchEintrag, *PTelBuchEintrag;

View full thread Probleme mit struct