Answers for "cpp print new line"

C++
2

how to print in new lines in C++

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

Browse Popular Code Answers by Language