Yes i followed a tutorial on that site to write that source code
but I think I did somthing wrong as it is flashes on and then off the screen to fast to see it … thats why I posted this here … so that people can help … are we up to speed now?
The program you’re writing is a console screen window that pops up. If you look around options, you can probably get the screen to stay, otherwise just add this at the end of the line.
int main()
{
...
int x;
cin >> x;
}
That’ll prompt you to type in something and assign it as x before it quits.