看测试环境了。。
什么环境都不可能溢出,JVM不让它溢出
/************ * a.c ************/ void function(void) { char buffer[5]; int* ret; ret=buffer+28; (*ret)+=10; } void main() { int x; x=0; function(); x=1; printf("%d\n",x); return; } /*end*/ 这个得出结果是?