char*a=“WelcometoXiyounet!”,a=a+11;printf(“%s”,a);这个程序输出是什么?
inti=1;while(i)i++这个程序是死循环吗?
第一个程序输出 younet!上机验证:http://codepad.org/0xjw6mbs
第二个程序不是死循环,因为i不断++会导致符号位溢出,结果变成0,退出循环。上机验证(为了节约时间,i从2100000000开始)http://codepad.org/uDePeyWY