An open API service indexing awesome lists of open source software.

https://github.com/anshul-004/sppu-se-2019-cg-oopl

SPPU Second Year Computer Engineering CG and OOPL Practicals
https://github.com/anshul-004/sppu-se-2019-cg-oopl

2019-pattern cg cgl comp computer-engineering computer-graphics-lab object-oriented-programming oopl se second-year-engineering sppu

Last synced: about 2 months ago
JSON representation

SPPU Second Year Computer Engineering CG and OOPL Practicals

Awesome Lists containing this project

README

        

**To run NORMAL C++ Code (OOP) :**

1) g++ filename.cpp
2) ./a.out

**To run normal GRAPHICS Code :**

1) g++ filename.cpp -lgraph
2) ./a.out

**To run OPENGL Code :**

1) g++ filename.cpp -lGL -lGLU -lglut
2) ./a.out

*NOTE : if g++ is NOT working, try replacing with gcc.*
*NOTE : -o flag followed by outputfilename.out can be used after compiling command for diffrent output file, but will change the output file name required while running also.*