Answers for "how to end a c++ program early"

C++
0

how to end a c++ program early

void func( bool d )
{
    if( ! ( d ) )
        return;

    //Load of code here that you don't want to execute if the above is incorrect.
}
Posted by: Guest on December-18-2019

Browse Popular Code Answers by Language