
#include <sys/types.h>
#include <stdio.h>

main(){
  printf("size_t:  %d\npointer: %d\n", sizeof(size_t),sizeof(void *));
}


