Write a C program RemoveWord.c that can remove a word from a given string (i.e. a line) entered by the user. Sample output is as following: Please enter a string: This is the last homework. Please enter the word to be removed: is Result: This the last homework Hint: The Clibrary function gets reads a line from stdin and stores it into the string pointed to by str. char *gets (char *str) 1)
OR
OR