Question: Save the program with the name 'fix23.c' Using a C programming to write a function named fix23 that source an array and another function named
Save the program with the name 'fix23.c' Using a C programming to write a function named "fix23" that source an array and another function named "printArray" that print out an array. The sourced array contains exactly the same numbers as the given array, but rearranged so that every 2 is immediately followed by a 3 and a 4. Do not move the 2's, but every other number may move. The array contains the same number of 2's, 3's and 4's, every 2 has a number after it that is not a 2 or 3, and a 2 appears in the array before any 3. (create your own input to check the result) The function fix23() can have two parameters. The first parameter is a pointer (pass by reference) and the second parameter is an integer as a size of an array. Sample 1 fix23({1, 2, 1, 3, 4}. 5) rightarrow {2, 3, 4, 1} Sample 2 fix23({1, 2, 1, 3, 3, 2, 1, 4, 4}, 9) rightarrow {1, 2, 3, 4, 1, 2, 3, 4, 1} Sample 3 fix23({ 2, 1, 4, 1, 3}, 5) rightarrow {2, 3, 4, 1, 1}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
