摘要: 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语言对函数参数压栈顺序未做 阅读全文