fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct
  4. {
  5. char c[17];
  6. } Foo;
  7.  
  8. int main()
  9. {
  10. printf("%u %u\n", sizeof(Foo), sizeof(Foo*));
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
17 4