Příklad

int main(int argc, char* argv[])
{
if(argc != 2){
cout << "argc  was not 2.. ";
}       

END: cout << "done";


return 0;
}

Řešení
Nepoužité návěští může být odebráno.

int main(int argc, char* argv[])
{
if(argc != 2){
cout << "argc  was not 2.. ";
}       

cout << "done";


return 0;
}