mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-06 23:46:15 +00:00
10 lines
103 B
C
10 lines
103 B
C
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
int main(void)
|
|
{
|
|
getchar();
|
|
*(int *) 0 = 1;
|
|
return 0;
|
|
}
|