C参数计算

C‘计算参数时,从右向左压栈的

int a[]={1,3,4};

int * ptr=a;

pirntf("%d,%d ",*ptr,*(++ptr));

输出都是3;

原文地址:https://www.cnblogs.com/wwwfj/p/3216087.html