Escape Sequence (\n)

It works like an enter button on a keyboard, which means it moves to the next line.


 #include <stdio.h>

 int main(){
    printf("hello first line\n");
    printf("Hello second line");

    return 0;
 }
Output:
hello first line
Hello second line