16 lines
203 B
C
16 lines
203 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
char *p = 10232498;
|
||
|
int a = *p;
|
||
|
|
||
|
while (1)
|
||
|
usleep(100000);
|
||
|
|
||
|
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|