// 设置第六个位为1
data |= (1 << 5);
// 清除第四个位
data &= ~(1 << 3);
C基础补习测试题
一、选择题(每题2分,共 50 分)
A、% B、/ C、%和/ D、*
A、(x>=y)&&(y>=z) B、(x>=y)AND(y>=z) C、(x>=y>=z) D、(x>=y)&(y>=z)
}
A、0 B、1 C、3 D、不确定的值
A、2.5 B、 2.0 C、 3 D、 2
A、00011011 B、00010100 C、00011100 D、00011000
A、x==0 B、x==1 C、x != 0 D、x != 1
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
A、x || y B、x | y C、x & y D、x ^ y
char a[]=“ABCDEF”; char b[]={ ‘A’,’B’,’C’,’D’,’E’,’F’};
则以下叙述正确的是 D 。
A、a和b数组完全相同 B、a和b长度相同
C、a和b中都存放字符串 D、a数组比b数组长度长
A、p B、*p C、x D、*&x
A、s+1 B、 s++ C、&s[0]+1 D、 &s[1]
#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
#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
A、a[2][0] B、a[2][1] C、a[2][2] D、a[2][3]
A、116 B、118 C、144 D、122
A、p+=2, *p++ B、p+=2, *++p C、p+=2, (*p)++ D、a+=2, *a
A、字符’c’ B、字符’b’ C、字符’a’ D、字符’d’
A、k=*ptr1+*ptr2; B、ptr2=k;
C、ptr1=ptr2; D、k=*ptr1*(*ptr2);
A、a[i++] B、a[i]++ C、a[i] D、a[++i]
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} };
void main()
{ int a=5,*p1,**p2;
p1=&a,p2=&p1;
(*p1)++;
printf("%d\n",**p2);
}
A、5 B、4 C、6 D、不确定
A、b=*&a; B、b=*a; C、b=a; D、b=*p;
{
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[]) { // 归并两个数组 { { { { { { return 0; 2. 编写strcat函数(不调用C的字符串库函数,编写函数 strcat). 已知strcat函数的原型是 char *strcat(char *strDest, const char *strSrc); strDest是目的字符串,strSrc是源串。 #include 3.一个岔路口分别通向诚实国和说谎国。来了两个人,已知一个是诚实国的,另一个是说谎国的。诚实国永远说实话,说谎国永远说谎话。现在你要去说谎国,但不知道应该走哪条路,需要问这两个人。请问应该怎么问? #include int main(char argc,const char *argv[]) { printf("Now let's ask the second person which road the first person would point to.\n"); return 0; 4. 从键盘输入一个十个元素的数组,通过选择排序进行降序排列并输出结果 #include int main(char* argc, const char* argv[]) int index = 0; int j; for (int i = 0; i < 10; i++) for (int i = 0; i < 10; i++) } 5. 给定一个字符串“I love china”,编写程序完成以单词为单位的逆序,如“china love i”,并要求不允许使用第三方变量保存数据,但可以使用辅助指针变量等。
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");
}
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;
}
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); // 获取第一个人的回答
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");
}
}
{
int a[10];
for (int i = 0; i < 10; i++)
{
printf("please input %d num:",i);
scanf("%d",a+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;
}
printf("%d ", a[i]);