0
votes
9answers
453 views
Convert struct to unsigned char *
How can I convert the following struct to unsigned char*?
typedef struct {
unsigned char uc1;
unsigned char uc2;
unsigned char uc3;
unsigne …
