Letter Identification
Question-> (Letter Identification) Given three words, write an algorithm and the subsequent C++ code to identify the following letters: 1.Letters Common To All The Three Words. 2.Letters In First Two Words But Not In The Third Word. 3.Letters In First Word But Not In Second And Third Word. 4.Letters In All The Three Words. FOR EXAMPLE-If The Words Are Apple, Camel, Element Then L 1.Letters Common To All The Three Words- l, e 2.Letters In First Two Words But Not In The Third Word- a 3.Letters In First Word But Not In Second And Third Word- p 4.Letters In All The Three Words- a, p, l, e, c, m, n, t; CODE: #include <iostream> #include <cstring> using namespace std ; int main () { string st1 ; cin >> st1 ; string st2 ; cin >> st2 ; string st3 ; cin >> st3 ; int count = 0 ; // case1: ...