I am learning C and have a question about structs.
I have a
struct myStruct { char member1[16]; char member2[10]; char member3[4]; };
you could do the following if you have a myStruct variable named st:
strcpy(foo, st.member1); strcat(foo, st.member2); strcat(foo, st.member3);