Quick actions

cmd+k|ctrl+k

Navigation

Languages

Structure padding in c

Snippet info

Language

C

Visibility

public

Author

santhosh136

Created

2020-09-19T11:33:38Z

Updated

2020-09-19T11:33:43Z

#include <stdio.h>
// #pragma pack(1) avoid strcture padding

// a _ _ _ | c c c c | d _ _ _ | b b b b => 16 bytes
struct s {
    char a; 
    int c;
    char d;
    int b;
}s1;

int main(void) {
    
    printf("%ld", sizeof(s1))  ;
    return 0;
}
INFO