2015年4月27日
摘要: 1 #include 2 #include 3 4 void test() 5 { 6 int a=0; 7 static int b=0; //【skill】相当于定义了全局变量 8 printf("int a:%d static int b... 阅读全文
posted @ 2015-04-27 21:37 Evence 阅读(1141) 评论(0) 推荐(0) 编辑
摘要: 1 //本段代码 使用2种子函数变量传入方式 和 3种子函数变量传出方式 2 #include 3 #include 4 int caculate(int *a,int b, int c); 5 int main() 6 { 7 int *A; 8 int s0=16,s1=2 ,... 阅读全文
posted @ 2015-04-27 16:42 Evence 阅读(1365) 评论(0) 推荐(0) 编辑