The GNU C Programming Tutorial - Questions for Chapter 15
Node:Questions for Chapter 15,
Previous:String library functions,
Up:Strings
Questions for Chapter 15
- What are the three main ways of initializing string variables?
- How would you declare an array of strings?
- What information is returned by
strlen
?
- What does the function
strcat
do? How about strncat
?
- Rewrite the Morse coder program more efficiently, using
static strings. (See Example 15, for the original version.)