当x=9999时,下列程序的返回值是_____
int fun(int x)
{
int countx=0;
while(x)
{
countx++;
x=x&(x-1);
}
return countx;
}
下列代码的输出结果是_________
void main()
{
int x=20,y=35;
x=(y++)+(x++);
y=(++y)+(++x);
printf("%d,%d\n",x,y);
}
下列代码输出的结果是_________
void foo(void)
{
unsigned int a=6;
int b=-20;
(a+b>6)?puts(">6"):puts("<6");
}
找出下列代码的错误
void Test(void)
{
char str1[10],str2[10];
for(int i=0;i<10;i++)
{
str2[i]='a';
}
strcpy(str1,str2);
} |