Ch. 10 Characters, C-strings and More About the string Class Flashcards
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 digit.
isdigit
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
The ________ function copies one string to another.
strcopy
The ________ function searches for a string inside of another one.
strstr
The _______ function compares two strings.
strcmp
The ________ function copies, at most, n number of characters from one string to another.
strncopy
The _______ function returns the value of a string converted to an integer.
atoi