c语言

整数溢出

如果整数超出了相应类型的取值范围会怎样? ``` /* toobig.c-- 超出系统允许的最大int值 */ #include int main() { int i = 2147483647; unsigned int j =...

Read More →
0 评论