2.7

    // 设置第六个位为1  
    data |= (1 << 5);  
  
    // 清除第四个位  
    data &= ~(1 << 3);  

C基础补习测试题

一、选择题(每题2分,共 50 分)

  1. C语言中,运算对象必须是整型数的运算符是    A     

A、% B、/ C、%和/ D、*

  1. 若有关系x≥y≥z,应使用    A     C语言表达式。

A、(x>=y)&&(y>=z) B、(x>=y)AND(y>=z)  C、(x>=y>=z) D、(x>=y)&(y>=z)

  1. 下面程序的输出是          main( D )                                                        { int x=10,y=3;                                                            printf(“%d\n”,y=x/y);

}

A、0 B、1 C、3 D、不确定的值

  1. 若float x ;x = 10/4 ; x的值是      B    

A2.5         B 2.0        C 3         D  2

  1. 设有以下语句:int a=3,b=6,c; c=a^b<<2; 则c的二进制值是   D     

A、00011011   B、00010100    C、00011100    D、00011000

  1. 在位运算中,某操作数 右移3位,其结果相当于       D   A、操作数乘以6   B、操作数除以6  C、操作数乘以8   D、操作数除以8

  1. 表达式 !x 等价于    A         。

Ax==0       Bx==1         Cx != 0       Dx != 1

  1. 下列语句定义pf为指向float类型变量f的指针, B      是正确的。
  1. float f, *pf=f; Bfloat f, *pf=&f; Cfloat *pf=&f, f; Dfloat f, pf=f;

  1. 执行下列程序段后,变量a,b,c的值分别是   D    

     int x=10,y=9;

     int a,b,c;

     a=(--x==y++)?--x:++y;

     b=x++;

     c=y;

A、a=9,b=9,c=9   B、a=9,b=10,c=9  C、a=1,b=11,c=10  D、a=8,b=8,c=10

  1. 整型变量x和y的值相等,且为非0值,则以下选项中,结果为0的表达式是      D    

A、x || y   B、x | y   C、x & y    D、x ^ y

  1. 对两个数组a和b进行如下初始化

  char a[]=ABCDEF”;   char b[]={ ‘A’,’B’,’C’,’D’,’E’,’F’};

    则以下叙述正确的是     D    

A、a和b数组完全相同            B、a和b长度相同  

C、a和b中都存放字符串          D、a数组比b数组长度长

  1. 设变量定义为“int x, *p=&x;”,则&*p相当于   A     

Ap          B*p           Cx         D*&x

  1. 若已定义 char s[10]; 则在下面表达式中不表示s[1]的地址的是          

As+1     B s++      C&s[0]+1      D  &s[1]

  1. 以下程序的执行结果为     C      

#inlcude  

#define N 2     

#define M N+1

   #define NUM (M+1)*M/2

 main()  

    {pirntf("%d",NUM);}                                                 A、5     B、6      C、8       D、9 

  1. 以下程序的输出结果是      D     

#define M(x,y,z) x*y+z

main()  

{  int a=1,b=2, c=3;    

printf("%d\n", M(a+b,b+c, c+a)); }                                       A、19   B、17    C、15         D、12 

  1. int a[5][4], *p=a[0];,则*(p+2*4+3)等于      D     

A、a[2][0]    B、a[2][1]          C、a[2][2]   D、a[2][3]

  1. int a[5][4], (*p)[4]=a;,数组a的首地址为100,*(p+2)+3等于        C   

A、116    B、118            C、144    D、122

  1. int a[]={1,3,5,7,9},*p=a;,则值为5的表达式是       A    

A、p+=2, *p++   B、p+=2, *++p     C、p+=2, (*p)++  D、a+=2, *a

  1. 已知:char s[4] = "cba"; char *p; 执行语句序列p = s;printf("%c\n",*p+1);后,其输出为      B     

A、字符’c’   B、字符’b’    C、字符’a’ D、字符’d’

  1. 已有定义 int k=2; int *ptr1, *ptr2, 且ptr1和ptr2均已指向变量k , 下面不能执行的赋值语句是      B     

A、k=*ptr1+*ptr2;        B、ptr2=k;

C、ptr1=ptr2;          D、k=*ptr1*(*ptr2);

  1. 若有定义int i=2,a[10],*p=&a[i];则与*p++ 等价的是   A        

A、a[i++]   B、a[i]++   C、a[i]   D、a[++i]

  1. 以下对二维数组a的正确说明是    A       

A、 int a[ ][3]={ 0 };            B、int a[3][ ]={ {1},{2},{3} };

C、 int a[1][3]={ 1,2,3,4 };      D、int a[2][3]={ {1,2},{3,4},{5,6} };

  1. 以下程序的输出结果是    C       

void main()

{  int a=5,*p1,**p2;

p1=&a,p2=&p1;

(*p1)++;

printf("%d\n",**p2); 

}

A、5    B、4    C、6    D、不确定

  1. 设有定义“int a=3,b,*p=&a;”,则下列语句中使b不为3的语句是        B   

A、b=*&a;   B、b=*a;   C、b=a;   D、b=*p;

  1. int main(int argc, char *argv[])

{

    int i, n = 0;

for (i=1; i

printf(“%d\n”, n);

}

./aout  12  345  678

输出结果为______B___。

A、123 B、136 C、678 D、58

二、程序题(每题5分,共50分)

1.已知两个升序数组a、b及空数组c:

Int a[] = {1,3,5,7,9,11,13,15,17,19};

Int b[] = {2,4,6,8,10,12,14,16,18,20};

Int c[20];

编写程序将两个数组完成归并,并存入数组c中;

#include  

int main(char argc,const char *argv[])

{
    int a[] = {1,3,5,7,9,11,13,15,17,19};
    int b[] = { 2,4,6,8,10,12,14,16,18,20 };
    int c[20];
    int i = 0, j = 0, k = 0;

    // 归并两个数组  
    while (i < 10 && j < 10)

{
        if (a[i] < b[j])

        {
            c[k++] = a[i++];
        }
        else

         {
            c[k++] = b[j++];
        }
    }


    while (j < 10)

   {
        c[k++] = b[j++];
    }

 
    while (i < 10)

  {
        c[k++] = a[i++];
    }


    for (int n = 0; n < 20; n++)

   {
        printf("%d ", c[n]);
    }
    printf("\n");

    return 0;
}

2. 编写strcat函数(不调用C的字符串库函数,编写函数 strcat).

已知strcat函数的原型是 char *strcat(char *strDest, const char *strSrc);

strDest是目的字符串,strSrc是源串。

#include  
  
char *my_strcat(char *dest, const char *src) {  
    char *p = dest;  
  
    while (*dest) {  
        dest++;  
    }  
  
   
    while (*src) {  
        *dest = *src;  
        dest++;  
        src++;  
    }  
  
      
    *dest = '\0';  
  
    return p;  
}  
  
int main() {  
    char dest[100] = "Hello, ";  
    char *src = "World!";  
    printf("%s\n", my_strcat(dest, src));  
    return 0;  
}

3.一个岔路口分别通向诚实国和说谎国。来了两个人,已知一个是诚实国的,另一个是说谎国的。诚实国永远说实话,说谎国永远说谎话。现在你要去说谎国,但不知道应该走哪条路,需要问这两个人。请问应该怎么问?

#include  

int main(char argc,const char *argv[])

{
 
    char honestRoad = 0;
    char lyingRoad = 1;

  
    char firstPersonAnswer; // 第一个人的回答  
    char secondPersonAnswer; // 第二个人的回答  

    
    printf("Let's ask the first person which road leads to the lying country.\n");
    scanf("%c", &firstPersonAnswer); // 获取第一个人的回答  

    printf("Now let's ask the second person which road the first person would point to.\n");
    scanf("%c", &secondPersonAnswer); // 获取第二个人的回答  

   
    if (firstPersonAnswer == secondPersonAnswer) 
    {
        printf("The road to the lying country is the opposite of what they both pointed to.\n");
        if (firstPersonAnswer == honestRoad) 
        {
            printf("So, you should take road %c to go to the lying country.\n", lyingRoad);
        }
        else 
        {
            printf("So, you should take road %c to go to the lying country.\n", honestRoad);
        }
    }
    else 
    {
        printf("Something went wrong. Their answers were inconsistent.\n");
    }

    return 0;
}

4. 从键盘输入一个十个元素的数组,通过选择排序进行降序排列并输出结果

#include

int main(char* argc, const char* argv[])
{
    int a[10];
    for (int i = 0; i < 10; i++)
    {
        printf("please input %d num:",i);
        scanf("%d",a+i);
    }

    int index = 0;

    int j;

    for (int i = 0; i < 10; i++)
    {
        index = i;
        for (j = i + 1; j < 10; j++)
        {
            if (a[j] > a[i])
                index = j;
        }
        int tmp;
        tmp = a[i];
        a[i] = a[j];
        a[j] = tmp;
    }

    for (int i = 0; i < 10; i++)
        printf("%d ", a[i]);

}

5. 给定一个字符串“I love china”,编写程序完成以单词为单位的逆序,如“china love i”,并要求不允许使用第三方变量保存数据,但可以使用辅助指针变量等。

你可能感兴趣的:(c语言)