String C++

#include 
#include 
int main ()
{
    using namespace std;
    string strSample ("this is a test");
    size_t nOffset = strSample.find ("test", 0);
    // Check if the substring was found...
    if (nOffset != string::npos)
        cout << "found:" << nOffset;
    else
        cout << "not found." << endl;
    return 0;
}