Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

According to ISO/IEC 9899-1999,

There may be unnamed padding at the end of a structure or union.

This is often referred to as structure padding. Structure members are arranged in memory as they are declared in the program text. Padding is added to the structure to ensure the structure is properly aligned in memory.

Non-Compliant Code Example

Code Block

struct struct buffer {
    size_t size;
    char buffer[50]; 
};  

int main(int argc, char *argv[]) {
  struct buffer buf; 

  printf("%u",sizeof(buf);

  return 0;
}