#include
int main ()
{
int arr[3]={11,22};
printf("%d %d",*arr,*(arr+1));

return 0;
}

*(arr+1) 이거 그냥
(*arr+*1) 이렇게 생각해도되냐?