#include <stdio.h> #include<string.h> void main() { char ch[10]={'a'}; for(int i=1;i<9;i++) { ch[i]=ch[i-1]+1; } ch[9]='\0'; printf("%s\n",ch); }