有以下程序#include int fun(char *s){ char *p=s;while( *p++ != '\0');return(p-s);}main(){ char *p="01234";printf("%d\n",fun(p));}程序的运行结果是
A. 6
B. 5
C. 4
D. 3
程序段char *s="abcde";s+=2;printf("%s\n",s);的运行结果( )
A. cde
B. 空零(无显示)
C. 字符'c'的地址
D. 无确定的输出结果
下面程序段的运行结果是( )char str[ ]="ABC",*p=str;printf("%c\n",*(p+2));
A. 67
B. 0
C. 字符'C'的地址
D. C
若有定义int a[5],*p=a;,则对a数组元素不正确引用是( )
A. int a[5],*p;p=&a;
B. int a[5],*p;p=a;
C. int a[5];int *p=a;
D. int a[5];int *p1,*p2=a;*p1=*p2;