Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我经常在 C 代码中看到这样的 MAC 地址表示:
struct mac_addr { unsigned char bytes[6]; }
为什么有必要将数组放入结构中,为什么不只是有一个数组?这有什么好处?
谢谢。
您不能在 C 中分配数组。但是您可以分配结构。