summaryrefslogtreecommitdiff
path: root/05/main.c
diff options
context:
space:
mode:
Diffstat (limited to '05/main.c')
-rw-r--r--05/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/05/main.c b/05/main.c
index 1f07113..62b198b 100644
--- a/05/main.c
+++ b/05/main.c
@@ -30,6 +30,12 @@
static unsigned int x=55;
static char *s = "hello";
static char *t = "goodbye";
+static char u[8] = "hellothe";
+static char v[100] = "re my";
+static char w[] = "friendly";
+static char x_[] = "hi";
+typedef int A[sizeof x_ + sizeof u];
+
/*
NOTE: THIS MUST WORK
int x[] = {1,2,3}