1 2 3 4 5 6 7 8
#include <stdio.h> int main(void) { int magic[2]; printf("magic: %zu\n*magic: %zu\n", sizeof magic, sizeof *magic); return 0; }