Advertisements
Advertisements
Question
Polina Raj has used a text editing software to type some text in an article. After saving the article as MYNOTES.TXT, she realised that she has wrongly typed alphabet K in place of alphabet C everywhere in the article.
Write a function definition for PURETEXT() in C++ that would display the corrected version of the entire article of the file MYNOTES.TXT with all the alphabets "K" to be displayed as an alphabet "C" on screen.
Note: Assuming that MYNOTES.TXT does not contain any c alphabet otherwise
Example:
If Polina has stored the following content in the file MYNOTES.TXT
I OWN A KUTE LITTLE KAR I KARE FOR IT AS MY KHILD |
The function PURETEXT() should display the following content
I OWN A CUTE LITTLE CAR I CARE FOR IT AS MY CHILD. |
Solution
void PURETEXT()
{
ifstream read;
read.open("MYNOTES.TXT");
while(!read.eof())
{
char str=read.get();
for (int i=0;i<str.length();i++)
{
if(str[i])== 'k')
{
str[i]= 'c';
}
}
}
}
shaalaa.com
Function Call by Reference
Is there an error in this question or solution?