7 lines
65 B
7 lines
65 B
10 years ago
|
#include <stdlib.h>
|
||
|
|
||
|
void test() {
|
||
|
int *s = NULL;
|
||
|
*s = 42;
|
||
|
}
|