[Solved]Write Function Substitutes Occurrences Character Character Str Make Sure Using Pointers C Q37219070
//Write a function that substitutes all the occurrences of the”from” character with the “to” character in str. Make sure usingonly pointers. (C language)
char* substitute(char *str, char from, char to)
Expert Answer
Answer to //Write a function that substitutes all the occurrences of the “from” character with the “to” character in str. Make sur… . . .
OR

