// a是一个全局变量,静态变量 int a; void test() { // b是一个局部变量,自动变量 int b = 0; b++; // c是一个局部变量,静态变量 static int c = 0; c++; printf("b=%d, c=%d\n", b, c); } int main(int argc, const char * argv[]) { for (int i = 0; i<3; i++) { test(); } return 0; }
posted on 2017-05-24 16:16 守望星空 阅读(184) 评论(0) 编辑 收藏 举报
Powered by: 博客园 Copyright © 2024 守望星空 Powered by .NET 9.0 on Kubernetes