Strings and C-Strings

1234567891011121314151617
Across
  1. 1. The process of combining two or more strings into one.
  2. 4. A sequence of characters used to represent text.
  3. 11. Specifying how data should be displayed within a string.
  4. 12. Substituting one substring with another within a string or C-string.
  5. 13. Changing a string to a different format, such as uppercase or lowercase.
  6. 14. Looking for a specific substring within a string or C-string.
  7. 15. Creating a duplicate of a string or C-string.
  8. 17. Flipping the characters of a string or C-string in the opposite order.
Down
  1. 1. The process of converting a character into an integer.
  2. 2. A special character ('\0') used to mark the end of a C-string.
  3. 3. Locating the position of a substring within a string or C-string.
  4. 5. A portion of a string, extracted by specifying a range of indices.
  5. 6. A word, phrase, or sequence that reads the same forwards and backwards.
  6. 7. Determining if two strings or C-strings are equal or which one comes first.
  7. 8. The process of accessing individual characters in a string or C-string.
  8. 9. Breaking a string into smaller parts (tokens) based on a delimiter.
  9. 10. A string or C-string with no characters, often length zero.
  10. 13. An alternative term for C-string, representing an array of characters.
  11. 16. The number of characters in a string or C-string.