#include <stdio.h>

typedef struct 
{
  char c[17];
} Foo;

int main()
{
  printf("%u %u\n", sizeof(Foo), sizeof(Foo*));
  return 0;
}
