程序:
#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
请按任意键继续. . .
本文共 227 字,大约阅读时间需要 1 分钟。
程序:
#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
请按任意键继续. . .
转载于:https://blog.51cto.com/yaoyaolx/1717974