The given statement is true.
The C programming language includes a set of functions implementing operations on strings in its standard library. Different operations, such as copying, concatenation, tokenization, and searching exist in supported. In C programming, the collection of characters exists stored in the form of arrays. This stands also supported in C++ programming. Therefore it's called C-strings. C-strings are arrays of type char terminated with a null character, that exists, \0 (ASCII value of null character is 0).
String exists as a data class that stores the sequence of characters in an array. A string in C always ends with a null character (\0), which implies the termination of the string. Pointer to string in C can be utilized to point to the starting address of the array, the first character in the array.
By being able to pass arrays as arguments, you can write your functions for processing C-strings. The strlen function returns a C-string's length and adds one for \0. You may utilize the <, >, <=, >=, ==, and != relational operators to correspond string objects.
Hence, The given statement is true.
To learn more about c-strings refer to:
https://brainly.com/question/15683939
#SPJ4