#include #include using namespace std; int main() { char str[100] = { 0 }; char substr[100] = { 0 }; cin.getline(str, sizeof(str)); cin.getline(substr, sizeof(substr)); int count = 0; // write your code here...... char *str2=str; while(str2){ if(strstr(str2,substr)!=NULL) c...