摘要: #include "stdio.h" /*目的: 认识静态局部变量 static !!!*/ int f(int a) { auto b = 0; static int c = 3; b = b + 1; c = c + 1; printf("\tc = %d\t",c ); return(a + 阅读全文
posted @ 2018-04-17 14:38 起个昵称真的好难 阅读(1999) 评论(2) 推荐(2)