Run ❯
Get your own website
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
#include
struct Example { int b; // 4 bytes char a; // 1 byte char c; // 1 byte }; int main() { printf("Size of struct: %zu bytes\n", sizeof(struct Example)); return 0; }
Size of struct: 8 bytes