Use the print methods and the appropriate escape sequence.
Comment out your Full Name at the end of your code.
1
Expert's answer
2021-09-03T15:06:09-0400
#include <iostream>
using namespace std;
int main()
{
cout<<"Escape sequence is \\n. \nUse to move to the next line\n";
return 0;
}
//Write your name here
Comments
Leave a comment