C++C++17Game DevelopmentIntroduction to C++Language FeatureLearn C++Syntax

Learn How To Use Key Events In C++ FMX Applications on Windows

C++ is one of the best programming language to develop games and simulations. One of the key things to master when learning to write a game in C++ is how to handle key events. This is the ability to perform actions inside the game in accordance with key events such as a key being held down or a key press (key down, key up) being completed. In this article, we explain how you can use key events of…
Read more
C++C++11C++14C++17Learn C++SyntaxTemplates

Learn About Extern Templates In Modern C++

The template feature in C++ is one of the great capabilities of modern C++. A template is a simple and very powerful statement in C++ that defines the operations of a class or function. In this article, we will show how extern templates can be used in a modern C++ app based on recent C++ standards.  First of all, let’s remind ourselves of what templates are in C++. What is a…
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…
Artificial Intelligence TechC++C++17Introduction to C++Language FeatureLearn C++

Learn How to Integrate GPT-3 API in C++

AI based software and hardware technology is rapidly increasing. Every day we see new developments. One of the great leap is we have more logical AI chat applications which are based on NLP and DL mechanisms. There are many AI Tools that can be used to develop an AI powered by a programming language like C, C++, Delphi, Python, etc. In this post we explain how you can use GPT-3 API in C++…
Read more
C++C++11C++14C++17Learn C++

Learn To Use Type Template Parameter Pack In C++

In modern C++, a template is a simple and very powerful statement that defines the operations of a class or function. Templates are parameterized features of C++ and they let us use a different number of parameters. In this article, we will explain how you can use a type template parameter pack in C++. The examples will work in any recent C++ Developer Tool that supports C++11, C++14, C++17, and…
Read more