Purchase Solution

A C program that removes vowels from text

Not what you're looking for?

Ask Custom Question

****This needs to be in "C"****

Write a function isvowel() that test whether or not charachter is a vowel. Use your function in a program that reads the standard input file and writes to the standard output file, deleting all vowels. Use redirection on a file containing some English text to test your program.

****This needs to be in "C"****

Purchase this Solution

Solution Summary

In this solution I demonstrate how to write a C program that removes all vowels from text. The text is read from standard input and printed to standard output.

Solution Preview

There are two parts to this problem. First we will write the function to test to see if a given character is a vowel or not. Then we'll put that function into a program that we can use to test it.

The function will be called "isvowel". It is supposed to check to see if a given character is a vowel or not. This means that the function requires one input, the character, and one output which is the result of the check to see if the character is a vowel or not. We will use the "if" statement to check to see if the character is a vowel. We also need to be concerned with both ...

Purchase this Solution


Free BrainMass Quizzes
Javscript Basics

Quiz on basics of javascript programming language.

Inserting and deleting in a linked list

This quiz tests your understanding of how to insert and delete elements in a linked list. Understanding of the use of linked lists, and the related performance aspects, is an important fundamental skill of computer science data structures.

Basic Computer Terms

We use many basic terms like bit, pixel in our usual conversations about computers. Are we aware of what these mean? This little quiz is an attempt towards discovering that.

C# variables and classes

This quiz contains questions about C# classes and variables.

C++ Operators

This quiz tests a student's knowledge about C++ operators.