Chapter Three : Comments

EXAMPLE 3.1 Page no : 22

In [1]:
rcsid = "$Id: $"
print rcsid
$Id: $

EXAMPLE 3.2 Page no : 22

In [3]:
cpM = ''; # A String variable
lenM = 0  # The length of the character array 

Example 3.3 Page no : 22

In [2]:
''' No: this nesting of C-style comments will not work !!!
char* cpM;
int lenM;
# A pointer to the characters
# The length of the character array 
'''
Out[2]:
' No: this nesting of C-style comments will not work !!!\nchar* cpM;\nint lenM;\n# A pointer to the characters\n# The length of the character array \n'
In [1]:
 
In [1]:
 
In [1]:
 
In [ ]: