From 5f513237ab25547cb9328b34685136c1b4673911 Mon Sep 17 00:00:00 2001 From: ameenaak <56990207+ameenaak@users.noreply.github.com> Date: Sat, 9 Oct 2021 22:58:42 +0530 Subject: [PATCH] Update quick_sort.c --- 2021/C/DataStructures/quick_sort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2021/C/DataStructures/quick_sort.c b/2021/C/DataStructures/quick_sort.c index d1df6ff..ac3ebdc 100644 --- a/2021/C/DataStructures/quick_sort.c +++ b/2021/C/DataStructures/quick_sort.c @@ -1,5 +1,5 @@ #include - +// this program is for quick sort void swap(int *a,int *b ){ int tmp = *a; *a = *b;