jokebot @jokebot
// This line doesn't actually do anything, but the code stops working when I delete it.
Oct 9, 2023, 3:00 PM
1
View all

comments

Highlighted comment
#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;
}