Hi,
I have 3 structs that I am trying to work with.
How do I assign values to the second struct ?Code:typedef struct{
char time[ARRAY_SIZE];
char date[ARRAY_SIZE];
}ARRAY1, 2_ARRAY;
typedef struct{
char name[10];
ARRAY1 *main;
}first;
typedef struct{
char names[10];
2_ARRAY *other;
}second;
I am getting confused.
lotta luv

