Question: Write a C program that include the following: A function that swapsthe pairs of characters of a string, If the string contains an odd number
Write a C program that include the following: A function that swapsthe pairs of characters of a string, If the string contains an odd number of characters then the last character remains as it is: void swapString( char str[] );
Examples:
Input: str = cs1160
Output: scaa06
Input: str = java
Output: ajav
Input: str = 12345
Output: 21435
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
