/studying-c

A bunch of C code developed during my studies of programming

Primary LanguageCMIT LicenseMIT

Overview

This is a set of simple C codes developed to study algorithms and concepts of computer science. It posseses the following characteristics:

Usage

Download this project and compile it by typing the command make in its folder. Next, just run one of the executables located in the bin folder. Here is an example:

$ make
$ ./bin/binary-tree

In order to check if there is any memory leak, use the valgrind command:

$ valgrind --tool=memcheck ./bin/binary-tree

To run all the tests, use the following command:

$ make test