#include <iostream> using namespace std; int main () { char ch; for (ch = 'a'; ch <= 'z'; ch++) { cout<<ch<<" , "; } return 0; } OUTPUT
No comments