doxygen/tests/upstream-test-suite/snippet_test.cpp
Petr Šabata 32cf374a4b RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/doxygen#6b0c5db74b337b843ad543bf84325b6e1ef5d040
2020-10-14 23:50:45 +02:00

42 lines
693 B
C++

#include <stdio.h>
#include <stdlib.h>
void main()
{
int i,n,temp,j,arr[25];
printf("Enter the number of elements in the Array: ");
scanf("%d",&n);
printf("\nEnter the elements:\n\n");
/* [input] */
for(i=0 ; i<n ; i++)
{
printf(" Array[%d] = ",i);
scanf("%d",&arr[i]);
}
/* [input] */
// [bubble]
for(i=0 ; i<n ; i++)
{
for(j=0 ; j<n-i-1 ; j++)
{
if(arr[j]>arr[j+1]) //Swapping Condition is Checked
{
temp=arr[j];
arr[j]=arr[j+1];
arr[j+1]=temp;
}
}
}
// [bubble]
printf("\nThe Sorted Array is:\n\n");
/* [output] */
for(i=0 ; i<n ; i++)
{
printf(" %4d",arr[i]);
}
/* [output] */
}