lang-bootstrap/05/main.c

44 lines
806 B
C
Raw Normal View History

2022-01-19 22:23:29 -05:00
/*typedef struct {
2022-01-19 11:57:42 -05:00
int i[41];
long double d;
} (*x)(void);
2022-01-26 18:00:47 -05:00
/* typedef enum X { */
/* R,S,T */
/* } *Foo[sizeof(unsigned long)]; */
/* typedef int A[T]; */
/* */
/* typedef struct A { */
/* int x, y; */
/* long double c; */
/* unsigned long d; */
/* char e[3]; */
/* long f; */
/* } A; */
/* */
/* typedef union B{ */
/* int x; */
/* struct { */
/* int y; */
/* struct {long z; } c; */
/* } c; */
/* }B; */
/* */
/* typedef int x[sizeof(A)+sizeof"hello"]; */
/* typedef int y[sizeof(struct B)]; */
2022-01-26 18:00:47 -05:00
2022-02-01 22:53:57 -05:00
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}
sizeof x
*/