I\'m not a C++ programmer, so I need some help with arrays. I need to assign an array of chars to some structure, e.g.
struct myStructure { char message[40
You need to use memcpy to copy arrays.