Welcome to my GitHub repository containing C++ scripts related to my master study program. This collection includes various programs covering different topics in C++.
-
Circumference_of_Ellipse.cpp: Calculate the circumference of an ellipse.
-
Class_Address.cpp: Demonstrates the usage of class and addresses in C++.
-
Class_Pointers.cpp: Illustrates the concept of pointers within a class.
-
Class_Glass.cpp: A C++ class representing a glass with relevant functionalities.
-
ComputingPi.cpp: Algorithm to compute the value of Pi.
-
FreeFall.cpp: Simulation of free fall physics.
-
Game_of_Life.cpp: Implementation of Conway's Game of Life.
-
PrimeFactors.cpp: Find the prime factors of a given number.
-
RandomVector.cpp: Generate and manipulate random vectors.
-
GeometricShapes.cpp: C++ program dealing with geometric shapes.
-
Magic_Squares.cpp: Implementation of algorithms related to magic squares.
-
Histogram_Plotter.cpp: A program to plot histograms.
Feel free to explore each script to understand and learn more about the concepts covered in your master study program.
To run any of these programs, ensure you have a C++ compiler installed on your system. Navigate to the specific script's file and compile and execute it using the following commands:
g++ filename.cpp -o output
./outputMake sure to replace filename.cpp with the desired script and output with a chosen executable name.
Happy coding! 🚀