Strings in C++

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