#include <stdio.h>
#include <stddef.h>

struct test
{
  int a;
  int b;
  struct test* t;      
  int c;
};

int main() {
  printf("%d\n", offsetof(struct test, t));
  return 0;
}