首页
编程
java
php
前端
首页
编程
java
php
前端
简单代码就是看不出来这个程序为什么输出结果是负数了
int i[1];
*i = 123;
printf("%d", i[1]);
溢出了,数组就一个元素,printf("%d",i[0]);
点击展开全文