Computer Science, asked by monika8212, 1 year ago

Write a program to store a string of sentence and display only those words which do not contain vowels

Answers

Answered by virk51
0
Remove vowels from a string in C: C program to remove or delete vowels from a string, if the input string is "C programming," then the output is "C prgrmmng." In the program, we create a new string and process input string character by character, and if a vowel is found it excluded in the new string, otherwise the character is added to new string after the string ends we copy the new string into the original string. Finally, we obtain a string without vowels.
Similar questions