1. There is one minor bug that I've›noticed in the CC8 program. If you›declare a string as››char s[];››in the formal parameter list of a›function strange things will happen,›while if you use››char *s;››everything seems fine. This is at›variance with K&R which states that›the two forms are equivalent.›››2. The most likely problem you will›run into is running out of string›space. This is purely a compiler›limitation. If you split your source›file up into different files (should›not be a problem unless you have›a truly HUGE function) this limit›can be avoided (i.e., the linker›won't mind at all).››3. Unfortunately, the ASCII right›brace character maps to the ATASCII›clear screen. This will cause ›problems if you try to view a file›by copying it to the E: device.›If you use Textpro to edit your ›you can use this character without›trouble. It's probably best to use›the correct left brace, right brace›etc. characters instead of the $(›and $) escape sequences to maintain›compatibility with standard C.››››Many thanks to Steve Kennedy for ›giving us this truly excellent C!›› -tony›