Re: Stopping executing script...
Well I don't know alot of cpp but my understanding is that any cpp compiler will use both cpp & c syntaxs, in c you would put.
//Clears anything in keyboard input so you dont get any input signals
//passed over from any other part of the program
//The printf is just so that anyone else remembers they have
//to press enter to continue.
printf("Please press 'Enter' to continue
fflush(stdin);
getc();
//Just place it just before the return 0; command
return 0;
}