//find a letter within a string #include using namespace std; #include void main() { char alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; char ch='D'; char* pos; pos=strchr(alphabet,'D'); if (pos==NULL) cout<