array initializers more or less working

This commit is contained in:
pommicket 2022-02-02 13:43:20 -05:00
parent f4a8333751
commit 6ccef91d52
2 changed files with 26 additions and 3 deletions

View file

@ -36,4 +36,6 @@ static char w[] = "friendly";
static char x_[] = "hi";
typedef int A[sizeof x_ + sizeof u];
static int a[3] = {1,2,3};
static int a[5] = {1,2,3};
static char b[6][7] = {{'a'},{'b'},{'c'},{'d'},{'e'}};
static int _u = 0x12345678;