Displaying raw storage in C
A
char *
variable ptr can point to
a piece of storage containing printable characters. To display the
first 20 characters enter:
LIST STORAGE(*ptr,20)
If
the string is null terminated, you can also use an interactive function
call on the command line, as in:
puts(ptr) ;
Refer to the following topics for more information related to the material discussed in this topic.