Answers for "throw point definition c++"

C++
1

what is throw in c++

//throw "throws" an exception.
  
It is usually used like:

if(something isnt right){
  throw somethingee;
}

/*(std::)*/cout << somethingee;
Posted by: Guest on September-11-2021

Browse Popular Code Answers by Language