#include <stdio.h>
#include <stdlib.h>
Go to the source code of this file.
Definition at line 4 of file snippet_test.cpp.
6 int i,
n,
temp,j,arr[25];
7 printf(
"Enter the number of elements in the Array: ");
9 printf(
"\nEnter the elements:\n\n");
14 printf(
" Array[%d] = ",i);
22 for(j=0 ; j<n-i-1 ; j++)
34 printf(
"\nThe Sorted Array is:\n\n");
38 printf(
" %4d",arr[i]);