摘要:
1:i++;(来自http://www.cnblogs.com/slave_wc/archive/2011/03/21/1990730.html)What will be the output of the following C code ? #include <stdio.h>int main() { int b = 3; int arr[] = {6, 7, 8, 9, 10}; int *ptr = arr; *(ptr++) += 123; printf("%d, %d\n", *ptr, *(++ptr));}/*修改中,C语言对函数参数压栈顺序未做 阅读全文
posted @ 2011-04-18 22:12
silencExplode
阅读(171)
评论(0)
推荐(0)
2011年4月18日