I saw a joke today that went like this:
The following line of code will make every C Program run faster:
*((int *)0) = 5;
I don't really get what's going on here. It looks like they're casting 0 to be an int
pointer, then making the pointer to that 5...?
What does this line of code do?