摘要: #include<stdio.h>#include<stdlib.h> //在C语言里面函数参数的执行过程,从右边向左执行void show(int a, int b){ printf("a == %d, b == %d\n", a, b);}void main(){ int a = 5; show 阅读全文
posted @ 2016-05-08 14:04 charmtool 阅读(532) 评论(0) 推荐(0) 编辑