26 lines
395 B
C
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;
|
|
}
|
|
|