#include
#include
main()
{char str[][20]={"One*World","One*Dream!"};
char *p=str[1];
printf(“%d,”,strlen(p));
printf("%s ",p); }
程序运行后的输出结果是
#include
main()
{char str[][20]={"One*World","One*Dream!"};
char *p=str[1];
printf(“%d,”,strlen(p));
printf("%s ",p); }
程序运行后的输出结果是
举一反三
- 有以下程序#include <stdio.h>#include <string.h>main(){ char str[ ][20]={“One*World”, “One*Dream!”},*p=str[1];printf(“%d,”,strlen(p));printf(“%s ”,p);}程序运行后的输出结果是()
- 有以下程序#include#includemain(){charstr[][20]={“One*World”,“One*Dream!”},*p=str[1];printf(“%d,”,strlen(p));printf(“%s ”,p);}程序运行后的输出结果是
- 以下程序 #include <string.h> main() {char str[][20]={"Hello","Beijing"},*p=str; printf("%d ",strlen(p+20)); } 程序运行后的输出结果是
- 以下程序的输出结果是(). main() {char str[]="ABCD",*p=str;printf("%s\n",p);}
- 有以下程序,程序运行后的输出结果是( ) #include int main() { char str[ ][20]={"One*World", "One*Dream!"}; printf("%s",str[1]); printf("%s\n",str[0]+4); } A: One*Dream!World B: One*WorldOne*Dream C: One One D: OO