Answers for "c++ print newline"

C++
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