Excuse the ads! We need some help to keep our site up.
Lazenca.0x0 I have opened an online candy store. |
typedef struct ORDER{
char orderCode[8];
unsigned int orderNumber;
char orderCandyName[8];
int candyCode;
};
typedef struct CANDIES {
char candyName[8];
unsigned int orderNumber;
int candyCode;
};
typedef struct STOCK{
char candyName[8];
unsigned int candyNumber;
int candyPrice;
char *candyDescription;
};
typedef struct IDPW{
long empty[2];
char id[IDPWMAX];
char pw[IDPWMAX];
long state;
char description[88];
};
typedef struct ACCOUNT{
long state;
long number;
struct IDPW *fd;
long bk;
}; |
a
| Flag |
|---|