#
试题名
热度
更新日期
3076 #include "stdio.h"    main()    {char c;    c=getchar();    while(c!='?')    {pu 50 2024-07-11
3077 #include <stdio.h>  main()  { int s=0,a=5,n;  scanf("%d",&n);  do { s+=1; a=a-2; }wh 97 2024-07-11
3078 #include <stdio.h>  main()  { int num,c;  scanf("%d",&num);  do {c=num%10; printf(&q 51 2024-07-11
3079 #include <stdio.h>   main( )   { int sum=10,n=1;   while(n<3) {sum=sum-n; n++; }   pr 39 2024-07-11
3080 #include <stdio.h>   main( )   { int sum=10,n=1;   while(n<3) {sum=sum-n; n++; }   pr 37 2024-07-10
3081 #include <stdio.h>   main()   { int num=0;  while(num<=2){ num++;printf("%d\n",n 25 2024-07-10
3082 #include < stdio .h >  main ( )   { float c=3.0 , d=4.0;   if ( c>d ) c=5.0;    76 2024-07-10
3083 #include <stdio.h>   main()   { float a,b,c,t;   a=3;   b=7;   c=1;   if(a>b)   {t= 27 2024-07-10
3084 #include <stdio.h> main() { int x=2,y=-1,z=5; if(x<y) if(y<0) z=0; else z=z+1; p 74 2024-07-10
3085 #include <stdio.h>   main()   { int a=12, b=-34, c=56, min=0;   min=a;   if(min>b)  81 2024-07-10
3086  #include <stdio.h>   main()   { int a=1,b=3,c=5;   if (c==a+b)   printf("yes\n");  89 2024-07-10
3087 已知 char x[]="hello", y[]={'h','e','a','b','e& 97 2024-07-10
3088 下列数据中属于“字符串常量”的是( )。 A.“a” B.{ABC} 若干个字符构成字符串 C.‘abc\0’ D.‘a’ 94 2024-07-10
3089 在C语言中,以 __作为字符串结束标志 A)’\n’ B)’ ’ C) ’0’ D)’\0’ 48 2024-07-10
3090 有如下程序 int a[10]={1,2,3,4,5,6,7,8,9,10},*P=a; 则数值为9的表达式是 A) *P+9 B) *(P+8) C) *P+=9 D) 84 2024-07-10
3091 若有说明语句“int a[5],*p=a;”,则对数组元素的正确引用是( )。 A.a[p] B.p[a] C.*(p+2) D.p+2 51 2024-07-10
3092 有语句:int a[10],;则___是对指针变量p的正确定义和初始化。 A)int p=*a; B)int *p=a; C)int p=&a; D)int *p 67 2024-07-10
3093 若有说明:int n=2,*p=&n,*q=p,则以下非法的赋值语句是: ( ) A)p=q B)*p=*q C)n=*q ​​​​​​​D)p=n 74 2024-07-10
3094 下列不正确的定义是( )。 A. int *p=&i,i; B.int *p,i; C.int i,*p=&i; D.int i,*p; 81 2024-07-10
3095 语句int *p;说明了 。 A)p 是指向一维数组的指针 B)p 是指向函数的指针,该函数返回一int型数据 C)p 是指向i 43 2024-07-10
3096 设有以下说明语句: typedef struct stu { int a; float b; } stutype; 则下面叙述中错误的是( )。 A、struct 31 2024-07-10
3097 设有如下定义: struck sk { int a; float b; D) (*p).age }data; int *p; 若要使P指向data中的a域,正确的赋值 28 2024-07-10
3098 以下对结构变量stul中成员age的非法引用是 struct student { int age; int num; }stu1,*p; p=&stu1; A) stu1.ag 70 2024-07-10
3099 .若有以下说明语句: struct date { int year; int month; int day; }brithday; 则下面的叙述不正确的是__ __ 42 2024-07-10
3100 若有以下说明语句: struct student { int num; char name[ ]; float score; }stu; 则下面的叙述不正确的是: 79 2024-07-09