Chapter 1 GETTING STARTED WITH C PROGRAMMING

Example 1.1, Page No. 6

In [1]:
print "C you later"
C you later

Example 1.2, Page No. 18

In [2]:
print "Chapter 1. Getting Started with C programming"
print "This is an example of format bug."
print "The format issue can be corrected by using"
print "the \n and \\ escape sequnece"
Chapter 1. Getting Started with C programming
This is an example of format bug.
The format issue can be corrected by using
the 
 and \ escape sequnece

Exmaple 1.3, Page No. 18

In [4]:
print "Chapter 1. Getting Started with C programming"
print "This is an example of format bug."
print "The format issue can be corrected by using"
print "the \\n and \\\\ escape sequnece"
Chapter 1. Getting Started with C programming
This is an example of format bug.
The format issue can be corrected by using
the \n and \\ escape sequnece