Skip to content

Instantly share code, notes, and snippets.

@ashumeow
Forked from diasansley/0_reuse_code.js
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ashumeow/8998443 to your computer and use it in GitHub Desktop.
Save ashumeow/8998443 to your computer and use it in GitHub Desktop.
/* IDEAS FOR QUICK SORT --- SYNTAX only written */
#include<stdio.h>
#include<conio.h>
void main()
{
int i, j, temp;
.
.
.
/* main statements*/
for(i=0; i<n; i++)
{
/* statements*/
}
for(j=0;j<n;j++)
{
/*statements*/
/*next for loop*/ for(i=0; i<n; i++)
{
/*statements*/
}
for(i=0;i<n;i++)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment