I have a program like this,
char name[100]; char age[12]; cout << \"Enter Name: \"; cin >> name; cout << \"Enter Age: \"; cin >> age
you can include the "conio.h" library and use getch();
#include #include using namespace std; int main(){ cout << "press enter"; getch(); return 0; }