摘要: C语言static篇 变量 #include<stdio.h> void func() { int a = 0; printf("%d\t", a); static int b; printf("%d\n", b); } int main() { func(); return 0; } #inclu 阅读全文
posted @ 2023-05-29 19:50 alexlance 阅读(56) 评论(0) 推荐(0)