top of page
Introduction to the c++ language

Before we start explaining the c++ programming language, let us ask ourselves a simple question:
?What is programming
Programming: It is the language that makes us able to communicate with any computer.

As in our real world, there are many languages ​​(Arabic, English, French...) Computer programming also has many languages ​​(c, c++, java, python...) and in all these lessons we will specialize in learning one programming language, which is + +C This is because it is a high-level language, with which you can develop many applications and we will be able to use it in Unreal (games).

C++ is difficult for beginners, but don't worry because I will explain all the lessons in the best and easiest way possible.
When you finish the lesson, make sure that you test yourself using all that was explained in the lesson, otherwise all that you learned will be in vain.

The first lessons in programming may seem easy, but the real difficulty of programming is when all the programming commands are accumulated in your mind, and you will not be able to retrieve them easily.
The best way is to repeat the lesson and test yourself until you can remember the code commands without memorizing them. The most important point in learning to code is to understand the code, not to memorize it.

In programming, there is what is called (Integrated Development Environment): It is the program that converts all code commands into a language understood by the operating system. But what you will use in these lessons to test the code is a site that is able to translate the code (input) and print its result on the screen (output).
Website link 
https://www.onlinegdb.com/online_c++_compiler

Our main satisfaction from these lessons is to make you able to deal with this language and learn its basics, and our ultimate goal is to apply everything we will learn in the Unrail Engine.
There are many lessons that I explained to develop a game in Unreal 5 using visual programming (
blueprint)
What is blueprint?
The Unreal program only uses the C++ programming language, but the blueprint is only an easier and alternative way to program. 

bottom of page