/Cpp_programs

A repository that contains some programs that I wrote in cpp.

Primary LanguageC++MIT LicenseMIT

Welcome

This is repository that contains some cpp programs I wrote for college.

Installation

There are currently two ways to install:

Use pip package manager to install the libraries from requirements.txt file.

pip install -r requirements.txt

If you have Poetry package manager installed, you can install the dependencies using the following command.

You will also need g++ compiler to compile the cpp programs.

Note

This was made on a linux distro and it will probably work only in a linux environment.

Running the programs

C++ programs are located in the cpp directory, and you can run them by executing the following command.

    python3 launcher.py

It will open a simple CLI that will ask which file to execute, and it will execute it.

Why did I make a python program to run cpp programs?

I was lazy to call and run g++ every time I wanted to compile a cpp program, so I made a python program to do that.