摘要: 按值传递地址传递:应该明白只有这2种传递,下面讨论函数的按值传递#include #include int add_rtVal(int a,int b){ int c = 0; c = a + b; return c;}int main(int argc,char* argv[])... 阅读全文
posted @ 2014-06-18 17:34 義丨往昔灬miller 阅读(365) 评论(0) 推荐(0) 编辑