blob: e669aec01a77139705aff42cdf78766ecb3b25a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* #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;
}
|