Skip Navigation
Jump
void *
  • Actually void* just points to anything, with no regard to the type of that thing. Pointing to the void is more accurately described by NULL pointer.

    98
  • Jump
    thisIsGoingToBeASeriousDebate
  • reddit image linking is broken?

    Well you didn't link to a reddit image, you linked to Google image search result page which is not an image.

    2
  • Jump
    I mean it could be right
  • Still false, thanks to compiler optimizations. Remember that integer overflow is UB. (unless you're using unsigned int or a programming language which strictly defines integer overflow, possibly as an error)

    P.S.: Assuming this is C/C++

    11