Chapter 10 Flashcards
What header file must you include in a program using character testing functions such as isalpha and isdigit?
cctype
What header file must you include in a program using the character conversion functions toupper and tolower?
cctype
What header file must you include in a program using string functions such as strlen and strcpy?
cstring
What header file must you include in a program using string/numeric conversion functions such as atoi and atof?
cstdlib
What header file must you include in a program using string class objects?
cstring
How do you compare string class objects?
With standard relational operators
The ______ function returns true if the character argument is uppercase.
isupper
The ______ function returns true if the character argument is a letter of the alphabet
isalpha
The ______ function returns true if the character argument is a whitespace character
isspace
The ______ function returns the uppercase equivalent of its character argument
toupper
the ______ function returns the lowercase equivalent of its character argument
tolower
the ______ file must be included in a program that uses character testing functions
cctype
The ______ function returns the length of a string
strlen
To ______ two strings means to append one string to the other
concatenate
The _____ function concatenates two strings
strcat