以下程序段的运行结果为()。chars[]="123",*p;p=s;printf("%c%c%c\n",*p,*++p,*++p);
举一反三
- 以下程序的输出结果为( )。 int main(){ char s[]="123",*p; p=s; printf("%c%c%c\n",*p,*++p,*++p); }
- 有以下程序main(){chars[]="159",*p;p=s;printf("%c",*p++);printf("%c",*p++);}程序运行后的输出结果是()
- 以下程序段的运行结果是()。inta[2],*p=a;*p=2;p++;*p=5;printf("%d,",*p);p--;printf("%d\n",*p);
- 下面程序的运行结果为____。void main(){ char *p,*q;char str[]="Hello,World\n";q=p=str; p++;printf("%s\n",q);printf("%s\n",p); }
- 有以下程序段,输出结果为()。 #include<stdio.h> main() {int a=10,*p,**q,***s; p=&a; q=&p; s=&a; printf("%d,%d,%d",*p,**q,***s); }