阅读下面程序,则执行后的结果是().#include"stdio.h"main(){charstr[]="tomeetme",*p;for(p=str;p
tmem
举一反三
- 阅读下面程序,则执行后的结果是 #include "stdio.h" main() {char str[]="tomeetme",*p; for(p=str;p<str+7;p+=2) putchar(*p); printf("\n");} A.tomeetme B.tmem C.oete D.tome
- 有以下程序#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 "stdio.h" main() { char *str="abcdefghijklmnopq"; while(*str++!='e'); printf("%c\n",*str); }
- #include #include main() {char str[][20]={"One*World","One*Dream!"}; char *p=str[1]; printf(“%d,”,strlen(p)); printf("%s ",p); } 程序运行后的输出结果是
- 以下程序的输出结果是()。#include <stdio.h>int main(){char str[100]="ABCDEFG", *p=str;int i;for(i = 0; *p != ’ ’; p++,i++);printf("%d ",i);return 0;}
内容
- 0
有以下程序:main(){charstr[][10]={“China”,“Beijing”},*p=str;printf(“%s”,p+10);}该程序运行后的输出结果是()。
- 1
阅读以下程序,其执行结果是_________#include [stdio.h]int main(){ int a,*p,*q; p=&a; q=&a; *p=5%6; *q=5; printf("%d\n",a);}
- 2
阅读以下程序,其执行结果是_________#include [stdio.h]int main(){ int a,*p,*q; p=&a; q=&a; *p=5%6; *q=5; printf("%d\n",a);}
- 3
有以下程序#include#includemain(){charstr[][20]={“One*World”,“One*Dream!”},*p=str[1];printf(“%d,”,strlen(p));printf(“%s ”,p);}程序运行后的输出结果是
- 4
以下程序的运行结果是______。#include"stdio.h"main()...d,%d\n",m,n,*p,*q);}