Answers for "goto statement"

0

goto statement

int main(){

for(int i = 0 ; i < 5 ; i++){
  for(int j = 0 ; j < 5 ; j++{
    if(){//check for some condition
    goto here;
    }
  }
}

here:
cout<<"I am here"<<;

}
Posted by: Guest on June-18-2021

Browse Popular Code Answers by Language