C
- @Linda_pp
- 清楚なC++メイドBOT
- 長谷川一輝
- @jj1bdx
- 安藤敏彦
- Siv3D
- @hnokx
- @ishidakei
- TAKEI Yuya
- I (@wx257osn2)
- Tommy6
- @nekketsuuu
- LouiS0616
- @volanja
- 大鎌広
- むてら
- ガチKGB
- 三重野賢人
x
12
1
2
typedef int Struct;
3
int main(void) {
4
int c = 15;
5
Struct *Pointer[c] /*= {NULL}*/;
6
7
/* some other code that uses Pointer */
8
9
memset(Pointer, 0, sizeof(Pointer));
10
return 0;
11
}
12
$ gcc prog.c -Wall -Wextra -std=c99 -pedantic
Start
0
Finish