Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 632 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 632 Bytes

DSA Examples

This repo contains examples for DSA Lab for Kathford Engineering College for Faculty BCT at 4th sem.

Get Started

Linux

  1. Install C and C++

    sudo apt install gcc g++
  2. Compile C++ Files:

    g++ <filename.cpp> -o <outputFileName.out>
  3. Run the program

    ./<outputFileName.out>

Windows

  1. Download and install c++ and add the path to Environment variables

  2. Compile C++ Files:

    g++ <filename.cpp> -o <outputFileName.exe>
  3. Run C++ Files:

        ./<outputFileName.exe>