DoubtlessOne
10-24-2005, 04:13 AM
Anybody know how to do a code snippet which allows the program to go back to it's previous menu?
i.e.
int main()
{
blah blah codes here;
cin>>x;
if(x==1)
{
such and such codes here;
}
}
what I basically want to do is.... from the "if" statement I want to go back to "int main"
anybody got a clue?
now what I want to do is...
i.e.
int main()
{
blah blah codes here;
cin>>x;
if(x==1)
{
such and such codes here;
}
}
what I basically want to do is.... from the "if" statement I want to go back to "int main"
anybody got a clue?
now what I want to do is...