Skip to content

Instantly share code, notes, and snippets.

View talwinder777's full-sized avatar

Talwinder talwinder777

View GitHub Profile
@talwinder777
talwinder777 / final.c
Created July 10, 2016 14:18
my quick sort is not running............plz see for the problem
#include<stdio.h>
int n;
main()
{
int data[20],i;
scanf("%d",&n);
fflush(stdin);
for(i=0;i<n;i++)
{
scanf("%d",&data[i]);