Answer to Question #10672 in C++ for Ivan
how can i return my program to the beginning without exiting
1
2012-06-08T11:27:16-0400
You can use break or return operator;
int main()
{
int k;
if(k!=5){
return;
}
}
int main()
{
int k;
if(k!=5){
break;
}
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C++
Comments
Leave a comment