/* File: cw25.c Name: */ /* Do not change any thing from this line until the end of the main function */ #include #define MAXLEN 256 /* function prototype for at_vowel() */ void at_vowel (char str[]) ; int main() { char m_str[MAXLEN] ; printf("Enter string: ") ; scanf("%[^\n]s", m_str) ; at_vowel(m_str) ; printf("Mangled string: %s\n", m_str) ; return 0 ; } /* End of main function */ /* Add your implementation of at_vowel here: */