[ create a new paste ] login | about

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

C++, pasted on Aug 16:
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
using std::cout;
using std::endl;

int main()
{
	int a(5);
	cout << a << endl;

	return 0;
}


Output:
1
5


Create a new paste based on this one


Comments: