Answers for "c++ end function"

C++
2

c++ endl

cout << "Hello " << 'n'<<"world";
cout << "Hello " << endl<<"world";
//Hello  
//world
Posted by: Guest on April-08-2021
0

statement that causes a function to end in c++

Return statement. The return statement stops execution and returns to the calling function. When a return statement is executed, the function is terminated immediately at that point, regardless of whether it's in the middle of a loop, etc.
Posted by: Guest on November-22-2019

Browse Popular Code Answers by Language