fork(3) download
  1. #include <stdio.h>
  2. #include <stddef.h>
  3.  
  4. struct test
  5. {
  6. int a;
  7. int b;
  8. struct test* t;
  9. int c;
  10. };
  11.  
  12. int main() {
  13. printf("%d\n", offsetof(struct test, t));
  14. return 0;
  15. }
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
8