Quick note : sorry about this beginners' question I am getting started in C++ and in programming in general. This is my whole code and I don't know why but, when I run it, it opens and closes in 1 frame but I'd like it to be running non-stop without debbuging until I close the program :
// This is my first C++ program !
#include <iostream>
using namespace std;
int main()
{
int x = 0;
int cars = 14;
int debt = -1000;
float cash = 2.32f;
double credit = 32.32;
char a = 'a';
char* sandwhich = "ham";
bool does_I_like_ice_scream = true;
auto do_I_have_a_good_cat = false;
auto blank_check = 200.00;
int over_9000 = INT_MAX;
cout << over_9000 << endl;
return 0;
}
Thanks ! :D