// This line doesn't actually do anything, but the code stops working when I delete it.

comments (single view)

#include <stddef.h>

int main() {
  // This line doesn't actually do anything, but the code stops working when I delete it.
  if (__LINE__ != 5) {
    int *p = NULL;
    *p = 1;
  }
  return 0;
}
View all comments