Question: in c language 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 a C program with the flowing C functions 1. Write a function named processString that receives a C-strings in the form of null terminated character pointers named str. The function replaces most frequently occurring characters ( ) in the string str with the first letter of your name. For example, if your name is "Ali" and the string str is "book", then after exacting the function the value of string str becomes "bAAk" as the character 'o' appears twice while other characters appear once 2. Write the main function that: - Prints your full name and your student ID Define an array of character named text of size 50 - Prompt the user to enter a string and store it in the array text - Properly calls the function processString to replaces most frequently occurring characters in the string str with the first letter of your name - 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
