Hello,
I have an array of strings as shown below:
1=a
0=b
3=c
10=d
2=e
4=f
I need to sort the above strings in the ascending order of the numbers that are part of the strings. I want the output as below:
0=b
1=a
2=e
3=c
4=f
10=d
Can anyone help me with the "C" code to sort in the above way