[ create a new paste ] login | about

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

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

int x()
{
  return 30;
}

int y(int a = x())
{
  return a;
}

int main()
{
  cout << y() << endl;
  return 0;
}
/* end */


Output:
1
30


Create a new paste based on this one


Comments: