#include
void gg(int ptr[])
{
printf("%d",*ptr[2]);
}

int main (void)
{
int arr[3]={1,2,3};
gg(&arr);
return 0;
}


이거 왜 안되는지 답변점...ㅠㅠ