I often see such representation of MAC address in C code:
struct mac_addr { unsigned char bytes[6]; }
Why necessary put an array in a st
You can't assign an array in C. But you can assign a struct.