网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
下面程序段的运行结果是( )。 char*p=" %d,a=%d,b=%d\n"; int a=111,b=10,c; c=a%b; p+=3; printf(p,c,a,b);
A.1,a=111,b=10
B.a=1,b=111
C.a=111,b=10
D.以上结果都不对
参考答案
更多 “ 下面程序段的运行结果是( )。 char*p=" %d,a=%d,b=%d\n"; int a=111,b=10,c; c=a%b; p+=3; printf(p,c,a,b);A.1,a=111,b=10B.a=1,b=111C.a=111,b=10D.以上结果都不对 ” 相关考题
考题
有下面程序段#include "stdio.h"#include "string.h"main(){ char a[3][20]={{"china"},{"isa"},{"bigcountry!"}};char k[100]={0},*p=k;int i;for(i=0;i3;i++){ p=strcat(p,a[i]);}i=strlen(p);printf("%d\n",i);}则程序段的输出结果是A.18B.19C.20D.21
考题
下面程序的输出结果是______。 include main() {char *p[]="BOOL","OPK","H","SP"};int
下面程序的输出结果是______。 #include<stdio.h> main() { char *p[]="BOOL","OPK","H","SP"}; int i; for(i=3;i>=0;i-,i-) printf("%c",*p[i]); printf("\n"); }A.SOB.SPC.SPOPKD.SHOB
考题
若有如下程序; main() {char *p="china"; p+=1; printf("%d\n",p); } 则程序运行后的输出结果是 ( )A.chinaB.字符h的地址C.hinaD.字符h的ASCII码值
考题
下面程序段的运行结果是( )。 char a[]="abcdefgh"; char *p=a; p+=3; printf("%d\n",strlen(strcpy(p,"ABCD")));A.8B.12C.4D.7
考题
有以下程序: main() {int a[10]={1,2, 3,4,5,6,7,8,9,10},*p=a[3],*q=p+2; printf("%d\n",*p+*q); } 程序运行后的输出结果是 ______。A.16B.10C.8D.6
考题
下列程序段的运行结果是()。includevoid main(){char str[]="ABC",*p=str;printf("%d\n
下列程序段的运行结果是( )。 #include<stdio.h> void main() { char str[]="ABC",*p=str; printf("%d\n",*(p+3)); }A.67B.0C.字符'C'的地址D.字符'C'
考题
下列程序段的运行结果是()。 include void main() {char str[]="ABC",*p=str; printf("
下列程序段的运行结果是( )。#include<stdio.h>void main(){ char str[]="ABC",*p=str;printf("%d\n",*(p+3) );}A.67B.0C.字符'C'的地址D.字符'C'
考题
有以下程序:includevoid f(char p[][10],int n){char t[10];int i,j;for(i=0;i
有以下程序: #include<string.h> void f(char p[][10],int n) {char t[10];int i,j; for(i=0;i<n-1;i++) for(j=i+1;j<n;j++) if(strcmp(p[i],p[j])>0) {strcpy(t,p[i]);strcpy(p[i],p[j]);strcpy(p[j],t);} } main() {char p[5][10]={"abc","aabdfg","abbd","dedbe","cd"}; f(p,5); printf("%d\n",strlen(p[0]));} 程序运行后的输出结果是( )。A.2B.4C.6D.3
考题
下面程序段的运行结果是char *p="abcdefgh";p+=3;printf("%d\n",strlen(strcpy(P,"ABCD"))); A.8 B.12 C.4 D.7
考题
有以下程序: point(char *p){p+=3;} main() {char b[4]={'a','b','c','d',},*p=b; point(p);printf("%c\n",*p); } 程序运行后的输出结果是 ______。A.aB.bC.cD.d
考题
A)(仕兰微面试题目)#i ncludevoid testf(int*p){*p+=1;}main(){int *n,m[2];n=m;m[0]=1;m[1]=8;testf(n);printf("Data v alue is %d ",*n);}------------------------------B)#i ncludevoid testf(int**p){*p+=1;}main(){int *n,m[2];n=m;m[0]=1;m[1]=8;testf(n);printf(Data v alue is %d",*n);}下面的结果是程序A还是程序B的?Data v alue is 8那么另一段程序的结果是什么?
考题
下列程序的输出结果是( )。 char*point(char*pt): main { char b[4]={a,c,s,f),*pt=b; pt=point(pt); printf("%c\n",*pt); } point(char*p) { p+=3; return p; }A.sB.cC.fD.a
考题
下列程序的输出结果是( )。 point(char*pt); main() { char b[4]{'a','c','s','f'},*pt=b; pt=point(pt); printf("%c\n",*pt); } point(char*p) { p+=3; return p; }A.sB.cC.fD.a
考题
下列程序的执行结果是______。 point (char *pt); main ( ) { char b[4]={ 'a', 'c', 's', 'f' },*pt=b; point (pt); printf ("%c\n", *pt); } point (char*p) { p+=3; }A.sB.cC.fD.a
考题
有以下程序main(){ int a[10]={1,2,3,4,5,6,7,8,9,10},*p=a[3],*q=p+2;printf("%d\n",*p+*q);}程序运行后的输出结果是
考题
下列程序段的运行结果是()。includevoid main(){ char str[]="ABC",*p=str;printf("%d\
下列程序段的运行结果是( )。#include<stdio.h>void main(){ char str[]="ABC",*p=str; printf("%d\n",*(p+3));}A.67B.0C.字符'C'的地址D.字符'C'
考题
有以下程序: main() {int a=[10]{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, *p=a[3], *q=p+2; printf("% d\n", *p+*q); } 程序运行后的输出结果是______。A.16B.10C.8D.6
考题
以下程序运行后,输出结果是()includess(char*s){char*p=s; while(*p)p++ return(p-s);
以下程序运行后,输出结果是( ) #include<stdio.h> ss(char *s) { char*p=s; while(*p) p++ return(p-s); } main() { char *a="abded" int i; i=ss(a) ; printf("%d\n",i); }A.8B.7C.6D.5
考题
以下程序段的输出结果是______。 char *p="abodefgh"; p+=3; printf("%d\n",strlen(strcpy(p,"12345")));A.8B.12C.5D.7
考题
以下程序运行后的输出结果是() main() {int a[10]={l,2,3,4,5,6,7,8,9,10},*p=&n[3], *q=p+2; printf(”%d\n”,*p+*q); }
考题
下面程序段的运行结果是()。 char *p=“abcdefgh”; p+=3; printf(“%d/n”,strlen(strcpy(p,“ABCD”))); A、4B、7C、8D、12
考题
单选题下面程序段的运行结果是()。 char *p=“abcdefgh”; p+=3; printf(“%d/n”,strlen(strcpy(p,“ABCD”)));A
4B
7C
8D
12
考题
填空题以下程序运行后的输出结果是() main() {int a[10]={l,2,3,4,5,6,7,8,9,10},*p=&n[3], *q=p+2; printf(”%d\n”,*p+*q); }
热门标签
最新试卷