[ create a new paste ] login | about

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

C++, pasted on Dec 21:
1
2
3
4
5
6
7
8
9
10
11
12
13
#include"iostream"
using namespace std;
int main()
{
	char a;
	for (int i = 3; i <= 6; i++)
	{
		a = i;
		cout << a << endl;
	}
        system("pause");
	return 0;
}


Output:
1
2
3
4
5
6





Disallowed system call: SYS_fork


Create a new paste based on this one


Comments: