Search This Blog
Welcome to 1printf(), your ultimate destination for C, C++, Linux, Data Structures, and Microcontroller programming! ๐ ๐นLearn advanced coding techniques in C& C++ ๐นMaster Linux internals & shell scripting ๐นDeep dive into Data Structures & Algorithms ๐นExplore Embedded Systems & Microcontrollers (8051,UART, RTOS) ๐นGet hands-on coding tutorials, project ideas,and interview preparation tips Whether you're a beginner or an experienced programmer, this channel will help you
Featured
- Get link
- X
- Other Apps
C Program to Sort an Array in Ascending Order (Bubble Sort)
๐ข C Program to Sort an Array in Ascending Order (Bubble Sort)
#include<stdio.h>
int main()
{
int num;
printf("Enter Size of the array:\n");
scanf("%d", &num);
if(num <= 0)
{
printf("!Invalid array size:\n");
return 1;
}
int a[num];
printf("Enter %d elements in an array:\n", num);
for(int i = 0; i < num; i++)
{
scanf("%d", &a[i]);
}
printf("Array elements before ascending order:\n");
for(int i = 0; i < num; i++)
{
printf("%d ", a[i]);
}
for(int i = 0; i < num - 1; i++)
{
for(int j = 0; j < num - i - 1; j++)
{
if(a[j] > a[j + 1])
{
int temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
}
}
printf("\nArray elements after ascending order:\n");
for(int i = 0; i < num; i++)
{
printf("%d ", a[i]);
}
}
๐ Explanation:
This C program reads an array of integers, displays it before sorting, then sorts it in ascending order using Bubble Sort algorithm, and displays the sorted array.
๐ก Sample Output:
Enter Size of the array: 5 Enter 5 elements in an array: 34 12 78 9 50 Array elements before ascending order: 34 12 78 9 50 Array elements after ascending order: 9 12 34 50 78
๐ Keywords:
Bubble Sort in C, ascending order array C program, sorting integers, C beginner programs, array logic
Popular Posts
C++ Program for Hybrid Inheritance (All Types Together)
- Get link
- X
- Other Apps
C++ Program for Function Overloading Example
- Get link
- X
- Other Apps
Comments
Post a Comment