/Magnificent-University-Projects

These source codes are the solutions to my University course problems.

Primary LanguageC++MIT LicenseMIT

Magnificent University Projects

What is this?

I study CS in IAUCTB and I plan to share every practice and example code (mostly C/C++) I write here. these code are not very practical. they have educational purpose.

Contributing

You can help by commiting new code or improving the existing codes. just keep in mind these have educational purpose so keep it simple please! contributing to the wiki is also very much appreciated.

Compiling

GNU Compiler Collection

I tested every file using GCC on Ubuntu. any compiler should be fine.

To compile in *nix (Linux, OS X, freeBSD,...) using GCC run this command in terminal:

g++ -Wall code_file.cpp

And then you can run the compiled executable by running:

./a.out

Microsoft Visual Studio .net

Add this line on top of the code if you want to compile in Visual Studio .net:

#include "stdafx.h"

Licence

All of the files in this repo released under MIT licence.