diff --git a/Sorting/Time_Sort.c b/Sorting/Time_Sort.c new file mode 100644 index 0000000..1c8a70c --- /dev/null +++ b/Sorting/Time_Sort.c @@ -0,0 +1,27 @@ +#include + +int main() +{ + + int n; + printf("Enter the number of elements: "); + scanf("%d", &n); + + int arr[n]; + + for(int i=0;i