Term
The _______ function returns true if the character argument is uppercase. |
|
Definition
|
|
Term
The _______ function returns true if the character argument is a letter of the alphabet. |
|
Definition
|
|
Term
The _______ function returns true if the character argument is a digit. |
|
Definition
|
|
Term
The _______ function returns true if the character argument is a whitespace character. |
|
Definition
|
|
Term
The ______ function returns the uppercase equivalent of its character argument. |
|
Definition
|
|
Term
The _______ function returns the lowercase equivalent of its character argument. |
|
Definition
|
|
Term
The ________ file must be included in a program that uses character testing functions. |
|
Definition
|
|
Term
The _______ function returns the length of a string. |
|
Definition
|
|
Term
To _______ two strings means to append one string to the other. |
|
Definition
|
|
Term
The ________ function concatenates two strings. |
|
Definition
|
|
Term
The ________ function copies one string to another. |
|
Definition
|
|
Term
The ________ function searches for a string inside of another one. |
|
Definition
|
|
Term
The _______ function compares two strings. |
|
Definition
|
|
Term
The ________ function copies, at most, n number of characters from one string to another. |
|
Definition
|
|
Term
The _______ function returns the value of a string converted to an integer. |
|
Definition
|
|
Term
The _______ function returns the value of a string converted to a long integer. |
|
Definition
|
|
Term
The _______ function returns the value of a string converted to a float. |
|
Definition
|
|
Term
The _______ function converts an integer to a string. |
|
Definition
|
|
Term
Character testing functions such as isupper, accept strings as arguments and test each character in the string. (T/F) |
|
Definition
|
|
Term
If toupper's argument is already uppercase, it is returned as is, with no changes. (T/F) |
|
Definition
|
|
Term
If tolowers's argument is already lowercase, it will be inadvertently converted to uppercase. (T/F) |
|
Definition
|
|
Term
The strlen function returns the size of the array containing a string. |
|
Definition
|
|
Term
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) |
|
Definition
|
|
Term
C-string handling functions accept as arguments pointers to strings (array names or pointer variables), or literal strings. (T/F) |
|
Definition
|
|
Term
The strcat function checks to make sure the first string is large enough to hold both strings before performing the concatenation. (T/F) |
|
Definition
False, no bound checking in C++ |
|
|
Term
The strcpy function will overwrite the contents of its first string argument. (T/F) |
|
Definition
|
|
Term
The strcpy function performs no bounds checking on the first argument. (T/F) |
|
Definition
|
|
Term
There is no difference between "847" and 847. (T/F) |
|
Definition
|
|