Strings in C++
Across
- 2. To invert the order of characters in a string.
- 5. This header file needs to be included before string methods can be used.
- 6. This C++ string method returns the length (number of characters) of a string.
- 8. C++ function that converts characters in a string to lowercase.
- 11. The process of combining or joining two or more strings.
- 13. To determine if one string is greater, less than, or equal to another in lexicographical order.
- 14. This C++ string method is used to extract a substring from a larger string.
- 16. In C++, you can convert a string to an integer using this function.
Down
- 1. A part of a string that is contained within another string.
- 3. C++ string method used to substitute one set of characters with another within a string.
- 4. A C++ string is an array of these data type elements.
- 5. These brackets are used access an individual character in a C++ string.
- 7. To check if two strings are equal, you should use this operator.
- 9. This C++ string method is used to find the position of one string within another.
- 10. C++ function that converts characters in a string to uppercase.
- 12. Every character converted to an integer is represented in this format.
- 15. This C++ string method is used to remove whitespace from the beginning and end of a string.