Skip to content

Instantly share code, notes, and snippets.

@dibakarsutradhar
Created September 14, 2018 16:53
Show Gist options
  • Save dibakarsutradhar/85a8792bc07a791dbf2d3a1d482b40dd to your computer and use it in GitHub Desktop.
Save dibakarsutradhar/85a8792bc07a791dbf2d3a1d482b40dd to your computer and use it in GitHub Desktop.
#include <iostream>
void vars() {
// this is a local variable
int x = 10;
}
int main() {
std::cout << "x is: " << x << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment