Use this tag for questions related to packing, which can extend from struct packing to grouping elements together.
In C, packing will prevent the compiler from adding padding to a struct, which will save some memory, but may affect access speed to the members of the struct (since it may not memory-aligned).
However, packing has a general meaning as well, when you want to group/cluster similar elements together.