Skip to content

A bunch of C code developed during my studies of programming

License

Notifications You must be signed in to change notification settings

ClecioJung/studying-c

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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