Question: const Implement a function with the following interface: char *my_toupper(char *dest, char *src). Function argument src points to the string that you should modify as

const Implement a function with the following interface: char *my_toupper(char *dest, char *src). Function argument src points to the string that you should modify as described below. The modified string will be written at address dest. In addition the function should return pointer to the modified string (i.e., to the same address dest originally points to). The string should be modified in the following ways: all letter characters should be changed to upper case. You can use function toupper, that converts one character to upper case for this. toupper is defined in header ctype.h, so you should add #include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
