#include void main(){ int arr[10] = {1,2}; int *ptr = arr; printf("%d %d",sizeof(arr),sizeof(ptr)); }
<