void fun(char *tt, int pp[]){ int i; for(i=0;i<26;i++) pp[i]=0; for(;*tt!='\0';tt++) if(*tt>='a'&&*tt<='z') pp[*tt-'a']++;}