我正在用 C 编写一个简单的函数,它以字节(逐位)返回一个数字“1”。这是我的代码,编译器告诉:“在“for”开始的行中“=”标记之前的预期表达式。
#include <stdio.h>
#include <stdlib.h>
int return_num_of_1(unsigned char u);
int main()
{
printf("Hello world!\n");
return 0;
return_num_of_1(1);
}
int return_num_of_1(unsigned char u)
{
int counter;
for (counter = 0; u; u << = 1)
{
if(u & 1) counter++;
}
return counter;
}