//UVA WELLASSA UNIVERSITY
//SORTING TECHNIQUES - C DATA STRUCTURE
//Iimplement Bubble Sort Technique using pointers.
//Program by:- EDIRISINGHE E.D.M.
//TESTED:- OK
#include<stdio.h>
int main(){ //main function
int a[5];
int i,temp,j,k; //variables for loops
int *arrPtr=a; //assign array to the pointer
for(i=0;i<5;i++) //for loop for getting values to the array
{
printf("Enter array values : ");
scanf("%d",&a[i]);
} //end of for loop Read More>>>