Learn How to Program in Cby Dr. Kristin Switala
|
|
Answers to Review: Strings (d)
White Box Testing
1. three errors:
- in line 2, use <ctype.h> instead of string.h
- in line 8 there are two errors, so the line should be: if(isalpha(initial) == 0)
2. two errors:
- in line 2, use <ctype.h>
- in line 8, the function is spelled isupper
|
|