+ 1
What is exactly the function of the /n section?
3 Respostas
+ 2
Hello
Can you attach an example with your question to make it more clear.
+ 2
Daniel Farías it is called the newline character which brings the pointer to starting of the next line whenever encountered
Run this code for better understanding 👨🏼💻👇
https://code.sololearn.com/cQ8Yaa43Osh7/?ref=app
+ 1
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
What's the "\n" exactly do? The output doesn't change when i delete it from the code