[ create a new paste ] login | about

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

C++, pasted on Jan 29:
1
2
3
4
5
6
7
extern int a[];

int main() {
  cout << a[0];
}

int a[1] = {42};


Output:
1
42


Create a new paste based on this one


Comments: