Skip to content

Instantly share code, notes, and snippets.

@dibakarsutradhar
Created September 14, 2018 18:34
Show Gist options
  • Save dibakarsutradhar/108a3c64f098d4a36f549a135737e4cd to your computer and use it in GitHub Desktop.
Save dibakarsutradhar/108a3c64f098d4a36f549a135737e4cd to your computer and use it in GitHub Desktop.
#include <iostream>
// global variables
int global = 10;
// main function
int main() {
// local variables with same name
int global = 5;
std::cout << global << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment