摘要: 对于内置变量的自动初始化代码1 1 #include<stdio.h> 2 #define CONST 100 3 int *p1; 4 int a[2]; 5 int b; 6 static int c; 7 main() 8 { 9 int d;10 static int e;11 int f[2];12 int *p2;13 printf("CONST=%d\n",CONST);14 printf("a[0]=%d\n",a[0]);15 //printf("*p1=%d\n",*p1);16 printf(&quo 阅读全文
posted @ 2012-09-05 17:24 高性能golang 阅读(2572) 评论(0) 推荐(1) 编辑