Program to sort 5 elements in ascending order
Program to sort 5 elements in ascending order
Shakir Karim
Sketch and Program for Sorting the Elements of an Array in Ascending Order
Page 1 of 2
Programming Fundamentals CS-121L Instructor: Dr. Shakir Karim
Sketch and Program for Sorting the Elements of an Array in Ascending Order
void main(void) {
int i, j, temp, n=5;
int a[5];
Page 2 of 2