What is C-string?
What is C-string? Explain with an example.
- C-string is null terminated string which is simply a null terminated character array. C-string is essentially C style string. It is different than the way C++ handles strings-by providing string class.
- Its general form of declaration is :
Post a Comment