fork(11) download
  1. #include <stdio.h>
  2.  
  3. struct b {
  4. int b;
  5. };
  6.  
  7. int main(void) {
  8. printf ("%d\n", sizeof(((struct b*)0)->b));
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
4