程序:

#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

请按任意键继续. . .