[ create a new paste ] login | about

Link: http://codepad.org/kXn942Gv    [ raw code | output | fork ]

C++, pasted on Aug 12:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <iostream>
using namespace std;

namespace multiple
{
  //  namespace
  //  {
        int a = 5;
  //  }
      int getVal(){
        return a;
      }
}

using namespace multiple;
int main(){
    cout<<a<<endl;
    cout<<getVal()<<endl;
    return 0;
}


Output:
1
2
5
5


Create a new paste based on this one


Comments: