+ 1
what is the use of #include<string>?
please tell me what is the use of #include<string>?
3 Answers
+ 9
It provides string manipulation functions.
+ 3
<string> is a C++ header file that includes the prototypes of all string functions need to process string values, such as strcpy (), strcat (), and many more.
0
thanks!