I know this question has been asked a lot, but I\'m still unclear how to access the structs.
I want to make a global pointer to an array of structs:
I would use a pointer to a pointer like:
test_t array_t1[1024]; test_t **ptr; ptr = array_t1; ptr[0] = ...; ptr[1] = ...; etc.