How To Skip a Line In C?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is no specific way to “skip a line” in C programming, but the usual way to add a line break is to use the “\n” character. For example:
printf(“Hello World\n”);
This will print “Hello World” followed by a new line.
The easiest way to skip a line in C is by using the \n character, which is the new line character. This will move the cursor to the next line.