Skip to content

This repository contains C and C++ projects with basics and some more advanced concepts.

License

Notifications You must be signed in to change notification settings

SouvikGhosh05/CCpp-Programming

Repository files navigation

CCpp-Programming

C/C++ CI

This repository is all about C and C++ programming. This also features their use cases and implementations.

To compile all the files, you can use the following command:

make all

or, if you want to compile all files under one directory, then type:

chmod +x build.sh               # make sure the script is executable
./build.sh Sorting_Techniques/  # This will build all the files under 'Sorting_Techniques' directory

Also, to run the program, you can use the following command:

chmod +x runner.sh                              # make sure the script is executable
./runner.sh Data_Structures/Trees/Binarytree.c  # This will run the file as given in the argument

Let's contribute to this repo!

❤~Souvik