Create an array of 10 structs having an int member and a string member. Initialize each
structure with its string value as the name of a state in the U.S. and the int value will be
set as the number of characters in the name of the state. For example, in one of the
structures, you can populate the string with the value “Kentucky” and corresponding int
value in the same structure will be 8. For 10 structures, choose the values from any 10
states of the U.S. After that do the following:
Sort and search the array by the int member value in the ascending order. For sorting, use
any sorting algorithm and use pointers for iteration over the array elements