how to jump to next line without endl; CPP code example
Example: how to print in new lines in C++
#include<iostream.h>
void main()
{
cout<<"First Line\n";
cout<<"Next Line";
}
#include<iostream.h>
void main()
{
cout<<"First Line\n";
cout<<"Next Line";
}