网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

int *ptr=arr;


参考答案

更多 “ int *ptr=arr; ” 相关考题
考题 下列有关指针的用法中错误的是( )。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 arr[]={6,7,8,9,10};int *ptr=arr;(ptr++)+=123;printf("%d,%d",*ptr,*(++ptr));( )

考题 What will the following C code do?int *ptr;ptr =(int *)Ox67a9;*ptr = Oxaa55;

考题 下列有关指针的用法中错误的是( )。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