| 1292 | // Print a single character on the screen. |
| 1293 | |
| 1294 | void PrintCh(char ch) |
| 1295 | { |
| 1296 | char sz[2]; |
| 1297 | |
| 1298 | sz[0] = ch; sz[1] = chNull; // Treat char as a string of length one. |
| 1299 | PrintSz(sz); // Then call above to print the string. |
| 1300 | } |
| 1301 | |
| 1302 | |
| 1303 | // A simple procedure used throughout the program: Print a particular |
no test coverage detected