#include <iostream> using namespace std; int main () { int i; for (i=97; i<=122; i++) { cout<<(char)i<<" , "; } return 0; } OUTPUT
No comments