This repo contains examples for DSA Lab for Kathford Engineering College for Faculty BCT at 4th sem.
-
Install C and C++
sudo apt install gcc g++
-
Compile C++ Files:
g++ <filename.cpp> -o <outputFileName.out>
-
Run the program
./<outputFileName.out>
-
Download and install c++ and add the path to Environment variables
-
Compile C++ Files:
g++ <filename.cpp> -o <outputFileName.exe>
-
Run C++ Files:
./<outputFileName.exe>