In the application where the complete code is
#include <iostream>
#include <string>
using namespace std;
int main()
{
string str = "Insert";
int kint = 0;
if (kint == 0 && str.find("Insert"))
{
cout << "found" << endl;
}
return 0;
}
No cout ever occurs. If you search for "nsert" instead then the cout does occur.
What am I missing?
