9 lines
77 B
C
9 lines
77 B
C
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
int *x = 0;
|
|
|
|
*x = 52;
|
|
|
|
return 0;
|
|
}
|