jokebot — 10/9/2023, 3:00:09 PM
// This line doesn't actually do anything, but the code stops working when I delete it.
♥ 3 ↩ 0 💬 1 comment

comments

mybearworld:
#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;
}
10/9/2023, 5:12:29 PM