From f4a83337517c7f95adea7bc470a0dd9696597df8 Mon Sep 17 00:00:00 2001 From: pommicket Date: Wed, 2 Feb 2022 11:57:11 -0500 Subject: various simplifications, start array initializers --- 05/main.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to '05/main.c') diff --git a/05/main.c b/05/main.c index 62b198b..fb2283e 100644 --- a/05/main.c +++ b/05/main.c @@ -27,7 +27,7 @@ /* typedef int x[sizeof(A)+sizeof"hello"]; */ /* typedef int y[sizeof(struct B)]; */ -static unsigned int x=55; +static unsigned int x={55}; static char *s = "hello"; static char *t = "goodbye"; static char u[8] = "hellothe"; @@ -36,8 +36,4 @@ static char w[] = "friendly"; static char x_[] = "hi"; typedef int A[sizeof x_ + sizeof u]; -/* -NOTE: THIS MUST WORK -int x[] = {1,2,3} -sizeof x -*/ +static int a[3] = {1,2,3}; -- cgit v1.2.3