printchar
As described, printchar
is a print command for
printing one character at a time. It is often used for printing
string array elements. In fact, the
routine StringPrint is
just a combination of a for loop and printchar
.
Example
printchar _temp_array[2] ! prints the third element character of _temp_array