欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

c语言:输出一个静态局部变量只在函数内部有效的例子

程序员文章站 2022-03-16 16:41:46
程序: #include #include int main() { static int a...
程序:

#include <stdio.h>
#include <stdlib.h>
int main()
{
static int a = 10;
printf("hello bit\n");
printf("a = %d\n", a);
system("pause");
return 0;
}

 

结果:

hello bit

a = 10

请按任意键继续. . .