Question: Write a program in C that uses the following function. This function takes three arguments. One is the pointer to user string, second is the
Write a program in C that uses the following function. This function takes three arguments. One is the pointer to user string, second is the pointer to store the reverse string, and third is an integer that has the value of user string length. In this program we will not enter a string with spaces. void reverseString(char* usrStr, char* revStr,int len) An output of the program is as follows: fali@fali-virtual-machine: /cis234/labs \$ / /lab5a Please enter a string :98765432 reverse of 98765432 is 23456789 fali@fali-virtual-machine: / cis234/labs
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
