Skip to content

Instantly share code, notes, and snippets.

@jonluca
Created March 15, 2018 04:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonluca/7b33a8ba24bf87be28365715d1e14538 to your computer and use it in GitHub Desktop.
Save jonluca/7b33a8ba24bf87be28365715d1e14538 to your computer and use it in GitHub Desktop.
Test Max
int mVar = INT_MAX;
void setVarToOne(int* mVar){
if(mVar) *mVar = 1;
}
setVarToOne(&mVar);
ASSERTEQ(mVar,1); //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment