有如下C语言程序段的输出结果为:(  )。
   int arr[]={6,7,8,9};
   int *ptr;
   ptr=arr;
   *(ptr+2)+=2;
   Printf(“%d,%d\n”,*ptr, *(ptr+2));
A、8,10
B、6,8
C、7,9
D、6,10