问题详情
设int arr[]={6,7,8,9,10};
int *ptr=arr;
(ptr++)+=123;
printf("%d,%d",*ptr,*(ptr));
()
请帮忙给出正确答案和分析,谢谢!