๐Ÿ”’ Closed Code to flow chart converter

Status
Not open for further replies.

godlike_pong

Honorary Poster
#include<stdio.h>
#include<conio.h>
void merge(int [],int ,int ,int );
void part(int [],int ,int );
int main()
{
int arr[30];
int i,size;
printf("\n\tโ€“โ€“โ€“โ€“โ€“โ€“โ€“ Merge sorting method โ€“โ€“โ€“โ€“โ€“โ€“โ€“\n\n");
printf("Enter total no. of elements : ");
scanf("%d",&size);
for(i=0; i<size; i++)
{
printf("Enter %d element : ",i+1);
scanf("%d",&arr);
}
part(arr,0,sizeโ€“1);
printf("\n\tโ€“โ€“โ€“โ€“โ€“โ€“โ€“ Merge sorted elements โ€“โ€“โ€“โ€“โ€“โ€“โ€“\n\n");
for(i=0; i<size; i++)
printf("%d ",arr);
getch();
return 0;
}
pa convert po kung cnung may converter
 
Status
Not open for further replies.

About this Thread

  • 0
    Replies
  • 258
    Views
  • 1
    Participants
Last reply from:
godlike_pong

Trending Topics

Online now

Members online
1,108
Guests online
1,379
Total visitors
2,487

Forum statistics

Threads
2,285,516
Posts
29,030,906
Members
1,218,499
Latest member
Mhaj
Back
Top