// Variable names have been changed to protect the innocent :D
struct nums{
int bleghone;
int bleghtwo;
int bleghthree;};
typedef struct nums BLEGHTYPE;
BLEGHTYPE lala;
BLEGHTYPE test;
lala.bleghone = 5;
lala.bleghtwo = 6;
lala.bleghthree = 6;
This code give me errors like:
"syntax error : missing ';' before '.'"
"'lala' : missing storage-class or type specifiers"
"'lala' : redefinition; different basic types"
Etc.
This is the first time this has happened to me with structs... am I missing something?
-Agent1
Visit Activeworlds today! Edited by - Agent1 on 6/24/00 7:32:34 PM