Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int g_nX; // global variable
- void Main()
- {
- int nY; // local variable nY
- // global vars can be seen everywhere in program
- // so we can changes the new values here
- g_nX = 5;
- } // nY is destroyed here
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement