Upload files to "DS/C/Lab/Week1"

This commit is contained in:
aadit 2024-08-05 01:08:32 +05:30
parent 181f9113d2
commit 51cc29eb50
5 changed files with 242 additions and 0 deletions

39
DS/C/Lab/Week1/bubble.c Normal file
View file

@ -0,0 +1,39 @@
#include <stdio.h>
int main()
{
int n,i,j,temp;
int flag=0;
printf("Enter the number of elements you want in the array: ");
scanf("%d",&n);
int arr[n];
printf("Enter the numbers you want in the array:\n");
for(i=0;i<n;i++){
scanf("%d",&arr[i]);
}
printf("The numbers in the array are:\n");
for(i=0;i<n;i++){
printf("%d\n",arr[i]);
}
for(i=0;i<n-1;i++){
for(j=0;j<n-i-1;j++){
if(arr[j]>arr[j+1]){
temp = arr[j];
arr[j] = arr[j+1];
arr[j+1] = temp;
}
}
}
printf("The numbers in the sorted array are:\n");
for(i=0;i<n;i++){
printf("%d\n",arr[i]);
}
}