Skip to content

Instantly share code, notes, and snippets.

@BlackHC
Created April 16, 2017 09:49
Show Gist options
  • Save BlackHC/d7df18fe2192f7154c095711c823cb22 to your computer and use it in GitHub Desktop.
Save BlackHC/d7df18fe2192f7154c095711c823cb22 to your computer and use it in GitHub Desktop.
Shadowing of a global variable
float a;
void func() {
float a; // This `a` shadows global `a`.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment