console open and shutdown quicly

this code right?
console open and shutdown quicly


1
2
3
4
5
6
7
8
9
10
#include<iostream>
	using namespace std;

	int main()
	{
		cout << "Abc.exe auttaa opettelemaan aakkoset\n\n";
		cout << "Aa Bb Cc Dd Ee Ff Gg Hh Ii Jj Kk Ll Mm Nn Oo Pp Qq Rr Ss Tt Uu Vv Ww Xx Yy Zz";
		return 0;
	}
  
There is a stickied thread on top of the beginer section: http://www.cplusplus.com/forum/beginner/1988/
add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <conio.h>
getch();

i.e.

#include<iostream>
#include <conio.h>
	using namespace std;

	int main()
	{
		cout << "Abc.exe auttaa opettelemaan aakkoset\n\n";
		cout << "Aa Bb Cc Dd Ee Ff Gg Hh Ii Jj Kk Ll Mm Nn Oo Pp Qq Rr Ss Tt Uu Vv Ww  Xx Yy Zz";
                getch();
		return 0;
	}
thanks
Topic archived. No new replies allowed.