lang-bootstrap/05/main.c
2022-02-18 12:36:57 -05:00

26 lines
395 B
C

/* #define _STDLIB_DEBUG */
/* #include <math.h> */
#include <stdio.h>
/* #include <signal.h> */
/* #include <stdlib.h> */
/* #include <string.h> */
/* #include <time.h> */
/* #include <float.h> */
/* #include <setjmp.h> */
/* */
int main(int argc, char **argv) {
int *p = 0x100;
p += 1;
switch (5) {
case 5:
switch (6) {
default:;
}
case 6:
;
}
printf("%p\n",p);
return 0;
}