///Author: Karara Mohamed @ tutodev1.blogspot.com/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[])
{ char t[100],b,e;
int n,i,m,j,mot=1,a=1;
printf("donner votre phrase :");
gets(t);
n=strlen(t);
for(i=0;i<n;i++){
if(t[i]==' '){mot=mot+1;}
}
printf("\n");
for(i=0;i<n;i++){m=0;
for(j=i;j<n;j++){ if(t[i]==t[j]){
m=m+1;
}
}
for(j=0;j<i;j++) { if(t[i]==t[j]){t[i ]=' ';}
}
if(t[i]!=' '){
printf("%c= %d\n",t[i],m);
}
}
printf("les mots sont %d\n",mot);
system("PAUSE");
return 0;
}