1
0
mirror of https://github.com/ioacademy-jikim/debugging synced 2025-06-06 23:46:15 +00:00
2015-12-13 22:34:58 +09:00

10 lines
103 B
C

#include <sys/types.h>
#include <unistd.h>
int main(void)
{
getchar();
*(int *) 0 = 1;
return 0;
}