Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int x; //variavel global
- int main(){
- cout<<"Veja ela não devolve um valor a variavel global "<<x<<endl; // console x=0
- { // ocultando uma variavel;
- x = 50;
- }
- cout<<"Saida da Variavel ocultada "<<x<<endl; // console x =50
- system("pause");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement