1 2 3 4 5 6 7 8
#include <stdio.h> int main() { int *s = NULL; if (s != NULL) { *s = 42; } return 0; }