what is string in c++ describe
Answers
Answered by
0
In C programming, the collection of characters is stored in the form of arrays, this is also supported in C++ programming. Hence it's called C-strings. C-strings are arrays of type char terminated withnull character, that is, \0 (ASCII value of null character is 0).
Similar questions