Skip to content

Instantly share code, notes, and snippets.

@tomthorogood
Created April 19, 2014 20:04
Show Gist options
  • Save tomthorogood/11095842 to your computer and use it in GitHub Desktop.
Save tomthorogood/11095842 to your computer and use it in GitHub Desktop.
int do_work(int* c) {
int i*; // This is never defined, and its value cannot be guaranteed.
int j = 42; // This is never used, but the programmer likely intended for it to be.
return c + *i; // Because i is never defined, this will likely be incorrect.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment