c语言:输出一个静态局部变量只在函数内部有效的例子
程序员文章站
2022-07-01 08:46:39
程序:
#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
请按任意键继续. . .
上一篇: 一文读懂MySQL复制机制