0216-initialize.c - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
0216-initialize.c (167B)
---
1 #include <stdio.h>
2
3 char *plumbercmd = "mspaint.exe";
4
5 int
6 main(void)
7 {
8 char *cmd[] = { plumbercmd, NULL, NULL };
9 cmd[1] = "bla";
10
11 return 0;
12 }