int check_vowel(char);
int main() { ...
printf("Enter a string to delete vowels
"); gets(s);
for (c = 0; s[c] != ' '; c++) { ...
t[d] = ' ';
strcpy(s, t); // We are changing initial string. ...
printf("String after deleting vowels: %s
", s);
return 0;