mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
commit
4e7dffefd4
@ -7,11 +7,13 @@
|
|||||||
|
|
||||||
#include<stdio.h>
|
#include<stdio.h>
|
||||||
#include<conio.h>
|
#include<conio.h>
|
||||||
#define SIZE 7
|
#include<stdlib.h>
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
int i,j,temp;
|
int i,j,temp,SIZE;
|
||||||
int arr[ SIZE ];
|
printf("Enter number of elements to be sorted : ");
|
||||||
|
scanf("%d",&SIZE);
|
||||||
|
int *arr = (int*)malloc(SIZE*sizeof(int));
|
||||||
for(i=0; i<SIZE; i++)
|
for(i=0; i<SIZE; i++)
|
||||||
{
|
{
|
||||||
printf("Enter Number : ");
|
printf("Enter Number : ");
|
||||||
|
Loading…
Reference in New Issue
Block a user