Hidden content!#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
***** * * * * * * ***** * ** x[] = {77,22,88,11,22};
* ** * ** ** * * * size = 5;
* * * * ** * * ** * *** print the array */
* ** * ** ** * ** * ** * * * * * ** i = 0; i < size; i++){
* ** ** * * *** * *** ** * * * * * * * * * * ** * * * *** ", x[i]); * * * * * * * * * * * * ***
* * ** *** * * * *** *
** * ** ****** *** * ** *** * * ** ** * **
*** * * * * * ** * * *
* * ** * *** * * * * * * I need this to happen size-times */
* * * ** * * * ** * ** * * j = 0; j < size; j++){
* ** * ** * ** ** *** * ** *** * * * * *** * * ** from left to right */
** * * * * **** *** * ** * * * ** * **** * *** * ** i = 0; i < size-1; i++){
** * *** ** * ** ** ***** * * * ** ** * * * * * ** * *** * * * * * * * * ** * * i-th element with its neighbor to check if they are in order */
*** ** * ** * * ** * * * *** * ** ** * * * *** * * * *** * ** * * * > x[i+1]){
* * * **** ** * * * ** * * *** ** * * ** * * ** * * * * *** ** * * * * ** * ** ** ** * ** * * exchange the values of x[i] and x[i+1] */