Skip to content

C++ is a cross-platform language that can be used to create high-performance applications. C++ was developed by Bjarne Stroustrup, as an extension to the C language. C++ gives programmers a high level of control over system resources and memory. The language was updated 4 major times in 2011, 2014, 2017, and 2020 to C++11, C++14, C++17, C++20.

Notifications You must be signed in to change notification settings

TebogoYungMercykay/Object_Orientated_Programming_in_CPP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation


C++ Programming


  • Requirements before running codes:

  • About Codes:

    • The code is all written by myself only
    • I hard code them as part of my practice code, practical and assignemnts for my coding modules.
  • About Me:

    • Tebogo Sello Selepe
    • Computer Sciences at Tuks

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

About

C++ is a cross-platform language that can be used to create high-performance applications. C++ was developed by Bjarne Stroustrup, as an extension to the C language. C++ gives programmers a high level of control over system resources and memory. The language was updated 4 major times in 2011, 2014, 2017, and 2020 to C++11, C++14, C++17, C++20.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages