Compile Time Data Structure Using Template Meta Programming
Learn about the link list as an example of a compile-time data structure and implement it with template meta-programming.
Learn about the link list as an example of a compile-time data structure and implement it with template meta-programming.
Learn to use the C++ language construct such as "Template template parameters" to introduce the abstraction layers not only to improve the quality of code but also to make it more reusable.
Learn how to implement some basic number theory functions with the help of C++ template meta programming.
Protect Software with Product Keys based on the Advanced Encryption Standard (AES).
Walk through the mathematical derivation of orthographic and perspective projection matrices used in 3D graphics.
Learn about the basics of how binary data is stored and manipulated. It is intended for readers who are fairly new to numerical systems. The concepts of storing integers, real numbers, and characters are discussed.
Deeply nested if-else and giant switch statements are a common sight in any complex logic implementation. Maintaining such a messy chunk of code is really a nightmare. Learn a very effective technique that I call logic-grid technique to implement rule engines and finite state machines (FSM).
This article give you the necessary code to create a text-based calculator. The calculator can handle variables, complex numbers, and draw functions.
Code to explain the working of Binomial Theorem.