added a one-line comment to tell what the library/header is for

This commit is contained in:
DhruvPasricha 2021-02-25 17:31:15 +05:30 committed by GitHub
parent ad8ab32572
commit c315db948a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,11 +4,10 @@
* @brief [Selection Sort](https://en.wikipedia.org/wiki/Selection_sort)
* implementation using recursion.
*/
#include <assert.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <assert.h> /// for assert
#include<stdio.h> /// for IO operations
#include <stdlib.h> /// for dynamic memory allocation
#include <time.h> /// for random numbers generation
/**
* @brief Swapped two numbers using pointer