All submissions

Code

#include <stdio.h>

typedef struct {
    char a;
    int b;
    short c;
} MyStruct;

void print_offsets() {
    MyStruct my_struct;
    printf("Offset of a: %d\n", (char*)&my_struct.a - (char*)&my_struct);
    printf("Offset of b: %d\n", (char*)&my_struct.b - (char*)&my_struct);
    printf("Offset of c: %d\n", (char*)&my_struct.c - (char*)&my_struct);
    printf("Size: %d", sizeof(my_struct));
}

int main() {
    print_offsets();
    return 0;
}

Solving Approach

 

 

 

Loading...

Input

Expected Output

Offset of a: 0 Offset of b: 4 Offset of c: 8 Size: 12