Use of "\n" character || formatting character || C++
In this, we are going to see how to use '\n' in our C++ program.

The Code given below can be used in Turbo C++ Compiler.

#include<iostream.h>
#include<conio.h>

void main()
{
    clrscr();
    // '\n' is used as an alternative to endl, it works faster than endl
    cout<<"Helpforcoders \n";
    cout<<"welcomes you";
    getch();
}
    
    

The Code given below can be used in g++/gcc Compiler.

#include<iostream>
using namespace std;

int main()
{
    // '\n' is used as an alternative to endl, it works faster than endl
    cout<<"Helpforcoders \n";
    cout<<"welcomes you";
    return 0;
}
    
    

#ENJOY CODING

Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post