Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a c language program as required Write the function int convertString(char *inString, char **outString) If either inString or outString is NULL, then this function
Write a c language program as required
Write the function int convertString(char *inString, char **outString) If either inString or outString is NULL, then this function should return 1. Otherwise, the function will take an input string, allocate a new string of the same length, call tolower () on each character in the input string, and put the result in the corresponding place in the output string. It will pass the new string through outString, as a pass-by-reference parameter, and will return the number of characters in the input stringStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started