what does packing mean in c

Solutions on MaxInterview for what does packing mean in c by the best coders in the world

showing results for - "what does packing mean in c"
Alice
31 Jul 2017
1typedef struct __attribute__((__packed__)) 
2{
3    IP_ADDR     MyIPAddr;               // IP address
4    IP_ADDR     MyMask;                 // Subnet mask
5    IP_ADDR     MyGateway;              // Default Gateway
6        // etc...
7} APP_CONFIG;
8