设int arr[]={6,7,8,9,10};int *ptr=arr;(ptr++)+=123;printf("%d,%d",*ptr,*(++ptr));( )

设int arr[]={6,7,8,9,10};

int *ptr=arr;

(ptr++)+=123;

printf("%d,%d",*ptr,*(++ptr));

( )


相关考题:

下列有关指针的用法中错误的是( )。A.int i;int *ptr=i;B.inti;int *ptr;i=*ptr;C.int *ptr;ptr=0;D.int i=5;int *ptr;*ptri;

设有如下定义: int arr[]={6,7,8,9,10); int*ptr: ptr=arr; *(ptr2)=2; printf("%d,%d\n",*ptr,*(ptr2)): 则下列程序段的输出结果为( )。A.8,10B.6,8C.7,9D.6,2

int *ptr=arr;

下列有关指针的用法中错误的是( )。A.int i;int*ptr=i;B.int i;int*ptr;i=*ptr;C.int*ptr;ptr=0;D.int i=5;int*ptr;*ptri;

设有如下定义:int arr[]={6,7,8,9,10);int*ptr:ptr=arr;*(ptr2)=2;printf(%d,%d\n,*ptr,*(ptr2)):则下列程序段的输出结果为( )。A.8,10B.6,8C.7,9D.6,2

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

若有以下定义,则下列程序段的输出结果为:int arr[]={6,7,8,9,10}; int *ptr; ptr=arr; ptr+=2; printf ("%d,%dn",*ptr,*(ptr+2));A.8,10B.6,8C.7,9D.6,10

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

16、以下程序的输出结果是__________。 int a[]={6,7,8,9,10}; int *ptr; ptr=a; *(ptr+2)+=2; printf("%d,%d\n",*ptr,*(ptr+2));A.8,10B.6,8C.7,9D.6,10