Question: in c please 1. Write a function named processString that receives two C-strings in the form of null terminated character pointers named text and str
1. Write a function named processString that receives two C-strings in the form of null terminated character pointers named text and str and removes each occurrence of the string str in the string text. For example, if the string text is "Programming", the string str is gramm then after exacting the function the value of string text becomes "Proing" 2. Write the main function that: - Prints your full name and your student ID - Define 2 arrays of characters each of size 50 , one named text and the other named str - Prompt the use to enter a string and store in text - Prompt the use to enter a string and store in str - Properly calls the function processString to remove each occurrence of the string str in the string text - Print the updated string text
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
