C++C++11C++14C++17C++20Learn C++SyntaxTemplates

What Are The Type Template Parameters In C++

Template feature in C++ is one of the great features of modern C++. One of the great features of modern C++ is the ability to define templates. Templates are one of the most important techniques for you to learn, since it’s really only with knowledge of templates that you can claim to understand C++. So much of C++, including the standard library that you use every day as a C++…
Read more
C++Introduction to C++Learn C++

Learn How To Work With Very Large Real Numbers In C++

C++ is a superb programming language that has rich collection of very useful libraries. One of the most common problems in programming is limitations of the types of numbers that we use. If you are about to calculate very big, large real numbers (i.e. factorial 100!) the Boost C++ Libraries can be very useful in avoiding issues and help make things much easier. Boost allows you to use very large…
Read more
CC++C++11C++14C++17Learn C++Syntax

What Is typedef In C++

C++ language is an evolved version of the C language. In development, the most commonly used features and functions in C++ come, at least in part, from the C language. One of these C-based features is the typedef specifier. While there is a type alias in C++ typedef is still a strong feature which allows us to create abbreviations for long types. In this article, we will explain how to use…
Read more
C++C++11C++14C++17Game DevelopmentIntroduction to C++Learn C++Syntax

Learn How To Use Keyboard Arrows In C++ On Windows

If you want to develop console applications and you need to perform some actions in accordance with key presses such as those you find in games, you need to handle these inputs in your applications. Many game engines are based on C++ and while it’s a lot more complicated to create a full C++ Game engine you will find an IDE like C++ Builder supports event handling just fine, and you can…
Read more