Hi. I have a program that goes a little like this:
// Include files, etc...
int main()
//code...
if (input == "logout");
{
return main();
}
// rest of the code
Now, every time the program goes to main, the values previously stored in the varibles are still there. I am looking for a way to start with a clean slate and wipe all of the variables.