Let’s have a look at a simple C program:
#include
main ( )
{
printf ("This is easy !!\n");
}
You might be wondering about the \n (pronounced backslash n) in the string argument of the function printf ( ):
"This is easy!!\n"
The \n is an example of an escape sequence: it's used to print the newline character. If You have executed Programs 1.1 or 1.2 you will have noticed that the \n doesn't appear in the output Each \n in the string argument of a printf ()causes the cursor to be placed at the beginning of die next line of output. Think of an...