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
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
The ______ function returns the value of a string converted to a long integer
atol
The ______ function returns the value of a string converted to a float
atof
The ______ function converts an integer to a string
itoa
Character testing functions such as isupper, accept strings as arguments and test each character in the string. (T/F)
False
If toupper’s argument is already uppercase, it is returned as is, with no changes. (T/F)
true
If tolowers’s argument is already lowercase, it will be inadvertently converted to uppercase. (T/F)
False
The strlen function returns the size of the array containing a string. (T/F)
False
If the starting address of a C-string is passed into a pointer parameter, it can be assumed that all the characters, from that address up to the byte that holds the null terminator, are part of the string. (T/F)
True
C-string handling functions accept as arguments pointers to strings (array names or pointer variables), or literal strings. (T/F)
True
The strcat function checks to make sure the first string is large enough to hold both strings before performing the concatenation. (T/F)
False
The strcpy function will overwrite the contents of its first string argument. (T/F)
True
The strcpy function performs no bounds checking on the first argument. (T/F)
True
There is no difference between “847” and 847. (T/F)
False