Hey everyone!
I have a question about associating 2 structs.
lets say...

Code:
struct cust {
	char name[32];
	char address[128];
	int id;
} customer[50];

struct products {
	char description[128];
	float price;
	char id[12];
} shop_basket[5];
I want to associate both structs in order to have at most 50 customers buying at most 5 products each.

Thanks in advance!