Write a program to input a text file name,reads the content of the file and create a new file named Copy.Txt which shall contain only those words from the original file which don't start with an uppercase vowel(i.e with A,E,I,O,U).For example if the original file contains
The First Step To Getting The Things You Want Out Of Life is This:Decide What You Want .-Ben Stein
Then the text file Copy.Txt shall contain
The First Step To Getting The Things You Want Life is This:
Decide What You Want.-Ben Stein
1
Expert's answer
2015-10-13T02:55:55-0400
Answer on Question#55409 — Programming — C++
#include <iostream> #include <stdio.h> using namespace std;
Comments
Leave a comment