#include <string>//not <string.h>
using namespace std;
string str1,str2;
str1 = "this is my first string.";
str2 = "this is my second string."
cout<<str1<<endl;
cout<<str2<<endl;
String is a class in boost c++ library,and it has many member functions to deal with string,you can do a search about it,or find a book contains chapter string.
You know some birds are not meant to be caged, their feathers are just too bright.