#include <stdio.h> int main(void) { char *p[10]; printf("%d %d ", sizeof(p), sizeof(*p)); return 0; }