🔥Limited Offer: Get 50% OFFon AI & Full Stack Courses🔥
Back to C Notes
Topic #7

New Lines


New Lines

To start a new line when printing text, you can use the \n character:

Example

#include <stdio.h>

int main() {
  printf("Hello World!\n");

printf("I am learning C.");
  return 0;
}

You can also print multiple lines using a single printf() function. However, this could make the code harder to read:

Example

#include <stdio.h>

int main() {
  printf("Hello World!\nI
am learning C.\nAnd it is awesome!");
  return 0;
}

Tip: Two \n characters in a row will create a blank line:

Example

#include <stdio.h>

int main() {
  printf("Hello World!\n\n");

printf("I am learning C.");
  return 0;
}

Note: What is \n exactly? \n is called an escape sequence. Escape sequences start with a backslash and represent special characters that cannot be typed directly. In this case, \n tells the program to move the cursor to the beginning of the next line. Here are some other common escape sequences: Escape Sequence Description Try it \t Inserts a horizontal tab \ Inserts a backslash character () " Inserts a double quote character

Want to go beyond the notes?

Join CodingNow 2.0's C course — live mentorship, real projects, and 100% placement support.

Enroll Now — Free Demo Available

New Lines – FAQs

Quick answers about learning New Lines in C.

This free note from CodingNow 2.0 explains New Lines in C — concept, syntax and worked code examples you can copy, run and revise before interviews.
Yes. Every C topic on CodingNow 2.0, including New Lines, is 100% free with no signup required.
With focused practice, most students grasp New Lines in 1–3 days from these notes; pairing it with CodingNow 2.0's mentor-led course takes you to job-ready depth faster.
Use the code examples in this note, then ask doubts for free on the CodingNow 2.0 Community (/community) — expert instructors answer within 24 hours.
WhatsApp
Call NowEnroll Now