Sylar007 的 站内主页
2009
03-01
03-01
课件有这个程序,输出结果为2 2 和3 2 ,哪位朋友帮我解释一下其中的*(q++)为什么会是2,还有下句二个值*p和(*q)++的值为什么是3 2。
#include <stdio.h>void main(){int a=2,*p,*q;p=&a;q=&a;printf("%d&nb....
Read More >