000
27.10.2008, 13:42 Uhr
~Structproblem
Gast
|
Hallo. Ich hab ein Problem mit folgendem Code. Erstens hab ich das Gefühl er ist sehr c mäßig,wie kann ich ihn umgestalten das er mehr nach c++ aussieht? Zweitens funktioniert er nicht, bzw. lässt er sich nicht complimieren,die Errors die er ausgibt sind: 6 |error: two or more data types in declaration of 'firststruct' In function 'void Structtest()': 15|error: expected unqualified-id before '[' token| 16|error: expected unqualified-id before '[' token| 17|error: expected unqualified-id before '[' token|
C++: |
#define ND 50 struct str { int x,y,type; } struct str firststruct[ND];
void Structtest() { int i = 0; int num_types = 5; while(i<NUM_D) { i++; str[i].x=rand()%50; str[i].y=rand()%50; str[i].type=rand()%num_types; } }
|
Ich hoffe mir kann hier jemand helfen^^. |