Write a Word Processor in C

Project: Write a Word Processor in C

Overview:

You have to create a Word processor using C programming. The program can accept a sentence of not more than 20 words.
The program is also able to perform the following functions:
(i) Reverse the whole sentence and print it out.
(ii) To identify how many instances of a specified character.
(iii) To return the position a specified character at the first occurrence.
(iv) To return the position a specified character at the last occurrence.
(v) To return the number of words in the sentence.
(vi) Reverse all the words in the sentence.

Continue reading Write a Word Processor in C