Write a C program that accepts a line of integers fromkeyboard.
- Input integers are separated by space.
- The program should be able to read varied number of integers inone line of string and varied number of digits for eachinteger.
- The program should be able to convert the input string into aninteger array and pass it to the function bubbleSort() which sortsthe integer array in ascending order but returns no value.
- The program should eventually print out the sorted array ofinteger on the screen.
An example of input/output is shown below:
Enter numbers to sort: 100 45 1 1236 17 36 25Output: 1 17 25 36 45
OR
OR