9 A string is represented as array of character?
Answers
Answered by
1
A string can be represented by an array of symbols. In C language the string is represented as an array of characters because C language does not support strings as a data type
Answered by
4
Explanation:
A string is actually one-dimensional array of characters in C language. These are often used to create meaningful and readable programs. For Example : The string "hello world" contains 12 characters including '\0' character which is automatically added by the compiler at the end of the string....
Similar questions