Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 507 Bytes

README.md

File metadata and controls

18 lines (17 loc) · 507 Bytes

College C Projects

These are collection of C language projects i did during my CS undergrad years. Each folder contains different project.

How to check projects locally?

  • Clone the repository
    git clone https://github.com/arensonzz/college-c-projects.git
  • Compile a project using CMake
    cd simple-tetris
    mkdir build
    cd build
    cmake ../
    make
    ./simple_tetris
  • You can also compile projects using any C compiler that supports at least C89.