string
- 02 November
Check if String Is Empty in C++
A String is a combination of characters that can store both alphabets and numbers together. In C, there was no concept of string as a datatype so character arrays were used. In C++, this drawback was resolved and the string was added as an individual datatype. Ways to Check if String Is Empty in C++ […]