Computer Science, asked by harikakankatala998, 1 month ago

Write
a BASIC program to sort the given
numbers​

Answers

Answered by seemasingh11256
0

Answer:

#include <stdio.h>

#include <conio.h>

#include <alloc.h>

void main()

int n,*p,i,j,temp;

printf("\nHOW MANY NUMBER: ");

scanf("%d",&n);

p=(int *) malloc(n*2);

it will help you.

Similar questions