int *ptr = (int*)malloc(10*sizeof(int));

이런 코드가 있으면 포인터ptr을

int형 배열 ptr[10] 로 생각해도 무방한게 맞나요?