c语言中左移问题

下面是在GCC上面的程序及结果web #include <stdio.h> int main() { int b = 32; printf("1<<b=%d\n",1<<b); printf("1<<32=%d\n",1<<32); return 0; } 结果svg [wang@Aming Desktop]$ gcc -o test test.c test.c
相关文章
相关标签/搜索