单选题以下所列的各函数首部中,正确的是______。 A) void play(Var:Integer,var b:Integer) B) void play(int a,b) C) void play(int a,int b) D) Sub play(a as integer,b as integer)
单选题有以下程序 #include <stdio.h>
main() { int a=1,b=2,c=3,x;
x=(a^b) printf("%d/n",x); }
程序的运行结果是______。
A.2
B.1
C.3
D.0
单选题若有以下程序: #include<stdio.h> int a[]=2,4,6,8; main() int i; int *p=a; for(i=0;i<4;i++) a[i]=*p; printf("%d/n",a[2]); 上面程序的输出结果是( )。 A) 6 B) 8 C) 4 D) 2
单选题已知大写字母F的ASCII码为70,以下程序的运行结果为 ( ) #include<stdio.h> main( ) char c1='F',c2='p'; printf("%d,%d/n",c1,c2); A) 70,80 B) 70,81 C) 70,82 D) 70,83
单选题fseek函数是C语言系统提供的标准库函数,其实现的具体操作是______。
单选题函数fseek(pf,0L,SEEK_END) 中的SEEK_END代表的是( )。
单选题下列选项中合法的赋值语句是{{U}} {{/U}}。
A. a=b=34
B. a=34,b=34
C. i-1;
D. m=(int)(x+y);
单选题下列程序的运行结果是( )。 main() int x=1,y=3,a=0; while(x++!=(y-=1)) a+=1; if(y<x)break; printf("%d,%d,%d/n",x,y,
单选题能将高级语言程序转换成目标语言程序的是______。
单选题已定义以下函数int fun(int*p){return*p;}fun函数返回值是
单选题有以下程序 #include<stdio.h> main() {int b[3][3]={0,1,2,0,1,2,0,1,2},i,j,t=0; for(i=0;i<3;i++) for(j=2;j>=i;j--)t+=b[i][j]; printf("%d/n",t); } 程序运行后的输出结果是( )。
单选题有以下程序: #include <stdio, h>void swap1 (int c0[],int e1[] ) int t; t = c0[0]; c0[0]: c1 [0] ; c1 [0] = t;void swap2(int * c0,int * c1) int t; t= *c0; *c0= *c1; * c1 =t;main( ) inta[2]=3.5.b[2]=3,5; swapl(a,a+1) ;swap2( printf("% d %a %d %d /n" ,a[0] ,a[1] ,b[0] ,b[1] ); 程序运行后的车出结果是( )。
单选题下列选项中正确的语句组是
A)char s[8]; s={"Beijing"};
C)char s[8]; s="Beijing";
B)char *s; s={"Beijing"};
D)char *s; s="Beijing";
单选题以下叙述错误的是( )。
单选题在面向对象的方法中, ( )描述的是具有相似属性与操作的一组对象。 A) 属性 B) 事件 C) 方法 D) 类
单选题有以下程序段: #include<stdio.h> int
j;float y;char name[50]; scanf("%2d%f%s",&j,&y,name);
当执行上述程序段,从键盘上输入55566 7777abc后,y的值为______。
A.566.0
B.55566.O
C.7777.0
D.566777.0
单选题以下程序的输出结果是______。 struct date long *a; struct date*next; double b; too; printf("%d",sizeof(too));
单选题C语言中,下列不合法的字符常量是______。
单选题以下合法的字符型常量是
单选题以下选项中,没有编译错误的是( )。