C++ examples for Data Type:char array
Using strchr to search char array based string
#include <iostream> #include <cstring> // strchr prototype using namespace std; int main() /*from ww w . j a v a 2 s . com*/ { const char *string1 = "This is a test"; char character1 = 'a'; char character2 = 'z'; // search for character1 in string1 if ( strchr( string1, character1 ) != NULL ) cout << '\'' << character1 << "' was found in \"" << string1 << "\".\n"; else cout << '\'' << character1 << "' was not found in \"" << string1 << "\".\n"; // search for character2 in string1 if ( strchr( string1, character2 ) != NULL ) cout << '\'' << character2 << "' was found in \"" << string1 << "\".\n"; else cout << '\'' << character2 << "' was not found in \"" << string1 << "\"." << endl; return 0; }