中国大学MOOC:设数组a的首地址是0x28fe74,则下列程序的执行结果是()。inta[10]={10,20,30};int*p;p=a;p++;cout<
举一反三
- 设数组a的首地址是0x28fe74,则下列程序的执行结果是()。inta[10]={10,20,30};int*p;p=a;p++;cout< A: 11 B: 20 C: 0x28fe75 D: 0x28fe78
- int a[10], *p;则让p指向数组的首地址的是()。
- 中国大学MOOC: 下列程序的运行结果是 。 #include<iostream>using namespace std;char *fun(char *str, char c){ while ( *str!=’\0’) if(*str==c) return (str); else str++; return (NULL);}void main(){ char s [80] = “warrior”, *p; p=fun(s, ‘r’); if(p) cout<<p<<endl;p=fun(s, ‘i’); if(p) cout<<p<<endl;p=fun(s, ‘b’); if(p) cout<<p<<endl;}
- 设已有定义:int a[10]={0},*p; 下列语句中正确的是( ) A: for(p=a;a<;(p+10);a++)printf(“%d”,*p); B: for(p=a;p<;(a+10);p++)printf(“%d”,*p); C: for(p=a,a=a+10;p++)printf(“%d”,*p); D: for(p=a;a<;10;p++)printf(“%d”,*p);
- 中国大学MOOC:inta[3][5],*p;p=a[0];则p++后的值代表了()。