//for loop prints the alphabet #include using namespace std; int main() { char ch; //used to 'drive' the loop for (ch = 'a'; ch<='z'; ch++) { cout<