一.找错题试题1:void test1(){ charstring[10]; char* str1 ="0123456789"; strcpy( string, str1 );}试题2:void test2(){ charstring[10],str1[10]; int i; for(i=0; i=... Read More
posted @ 2015-03-09 17:59 星语海蓝 Views(375) Comments(0) Diggs(0) Edit
1.求下面函数的返回值( 微软)int func(x) { int countx =0; while(x) { countx ++; x = x&(x-1); } return countx; } 假定x = 9999... Read More
posted @ 2015-03-09 17:57 星语海蓝 Views(301) Comments(0) Diggs(0) Edit