#include<stdio.h> int main() { char str[26],j; int i; j='a'; for(i=0;i<26;i++) { str[i]=j; j++; } printf("%s\n",str); return 0; }