All pastes #2046029 Raw Edit

Stuff

public c v1 · immutable
#2046029 ·published 2011-04-13 15:06 UTC
rendered paste body
main(){      char *str;      remVoc(str);     }char *remVoc(char *S){     int i=0,j;          while (S[i]!='\0')     {           if (S[i]='a' || S[i]='e' || S[i]='i' || S[i]='o' || S[i]='u' || S[i]='y')           {                        j=i;                        while (S[j]!='\0')                        {                              S[j]=S[j+1];                              j++;                        }                        i--;           }           i++;     }}