Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 1.61 KB

README.md

File metadata and controls

42 lines (35 loc) · 1.61 KB

The Codes Are Yet To Be Optimised and Refined, I Implemented them whilst I was still a *beginner* in Programming!!


C++ Programming



Makefile

NB: A makefile Is Included to compile and run the codes on the terminal with the following commands:=
  • make clean
  • make
  • make run
main:
	g++ -g *.cpp -std=c++98 -pedantic -o main

clean:
	rm -f *.o *.tar.gz main
	reset
	clear

run:
	valgrind --leak-check=full ./main

tar:
	tar -cvz *.* -f Code.tar.gz
	
untar:
	tar -zxvf *.tar.gz