Write a C code to sort an array in descending order using Bubble sort. The length of the array should be greater than or equal to 10. There is no user input, so a fixed array can be used. For example, if the input array A=[9,1,7,25,3], then the output array will be [25,9,7,3,1].