Answers for "break line in c++"

C++
3

break in c++

break; statement helps in coming out of the current loop
Further in case of nested loop it gets you out of the innermost loop.
Posted by: Guest on July-24-2021
1

how to print in new lines in C++

#include<iostream.h>
void main()
{
  cout<<"First Linen";
  cout<<"Next Line";
}
Posted by: Guest on August-04-2020

Browse Popular Code Answers by Language