C++C++11C++14C++17C++20Learn C++Syntax

What Is Uppercase T in C++ Syntax?

Knowing the correct syntax for any command, function or method is really important in C++ before you can write code effectively. Generally, we need to learn what kind of return type or parameters are used. We can use the helpful features of our IDE such as auto completion to make things easier, or we check online syntax examples. In modern C++ programming, sometimes we see an uppercase T in syntax…
Read more
C++C++11C++14C++17Generic ProgrammingLearn C++Templates

What Is A Template In C++?

The C++ language is a very strong choice for all aspects of professional and modern programming. One of the great features of modern C++ are templates. A template is a simple and very powerful statement in C++ which defines the operations of a class or function in a generic way and then lets the user apply the same template on different types in those operations. You can learn how to use a…
Read more