How can i exit from function and to continue running the programm?
ex:
function(){
line1;
line2;
if(..){
line n;
line n+1;
//I want to break here !!!
}else{..}
line k; //I want to continue from this line!
I tried exit but this stops the whole program. I tried break but i see in Borland it doesnt work as it suppose to work in C++.
ex:
function(){
line1;
line2;
if(..){
line n;
line n+1;
//I want to break here !!!
}else{..}
line k; //I want to continue from this line!
I tried exit but this stops the whole program. I tried break but i see in Borland it doesnt work as it suppose to work in C++.