In: Computer Science
Could you write a c- program that reads a text file into a linked list of characters and then manipulate the linked list by making the following replacements
1. In paragraph 1 Replace all “c” with “s” if followed by the characters “e”, “i” or “y”; otherwise
2. In pragraph 2 Replace "We" with v"i"
This is the text to be manipulated:
Paragraph1
She told us to take the trash out.
Why did she do that?
I wish she would not do that
Paragraph 2
We came home very late despite the fact we had school the next day.
We had a lot of fun
I miss my friends.
In c programming language please