lang-bootstrap/05/main.c

27 lines
395 B
C
Raw Normal View History

2022-02-17 17:38:52 -05:00
/* #define _STDLIB_DEBUG */
/* #include <math.h> */
#include <stdio.h>
2022-02-17 17:38:52 -05:00
/* #include <signal.h> */
/* #include <stdlib.h> */
/* #include <string.h> */
/* #include <time.h> */
/* #include <float.h> */
/* #include <setjmp.h> */
/* */
2022-02-16 12:25:14 -05:00
int main(int argc, char **argv) {
int *p = 0x100;
p += 1;
2022-02-18 12:36:57 -05:00
switch (5) {
case 5:
switch (6) {
default:;
}
case 6:
;
}
printf("%p\n",p);
return 0;
2022-02-09 22:44:27 -05:00
}
2022-02-12 21:27:57 -05:00