As a beginner of C++, I feel so puzzled on this point for a long time, the program is to tell the appearing times of each word in a string.
#include <iostream>
#include <string>
#include <vector>
using namespace std;
int main()
{
string x;
vector<string> str;
vector<int> t;
while (cin >> x)
{
int k = 0;
for (int j = 0; j != str.size(); j++)
{
if (strcmp(x,str[j]) == 0)
t[j]++;
k = 1;
}
if (k == 0)
{
str.push_back(x);
t.push_back(1);
}
}
for (int i = 0; i != str.size(); i++ )
{
cout << str[i] << " " << t[i] << endl;
}
return 0;
}
Here is the error:
C++\code\3.3.cpp(17) : error C2664: 'strcmp' : cannot convert parameter 1 from 'class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >' to 'const char *'
No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called
I find no result on the Internet after a long-time searching. How can I fix this?

y?.....alsostd::stringcannot be used withstd::strcmp. – Nawaz Aug 5 '12 at 9:45