C++ Language
What is C++ Language?
For more information about C++ https://en.wikipedia.org/wiki/C%2B%2B
Which Industries Demands C++ Developers?
- Game Industries
- SaaS Industries (Software as a service)
- Space Industries
- Web Industries
These are the some industries that seek for C++ developers.
And also there are some other fields as well for C++ developers such as Army because lots of the defense softwares are written using C++.
Keep reading and you will find information that why and how these industries are using C++.
Game Industries
May you are aware or may not but today many of the games and almost every game engine is written using C++.
- Why?
Lets search on the google and see which game engines are using C++.
Unity Game Engine
As you can see the image above, one of the most popular game engine Unity is written in C++ as well. There is another information as well and it says C(Runtime) and it means that all of the critical tasks as i mentioned above Physics, Renderers are works and handled by C.
Unreal Game Engine
Unreal Engine is one of the most powerful game engine as well and it has been developed using C++.
Cry Game Engine 
Cry Engine as well using C++.
Godot Game Engine
One of the completely open source and powerful game engine godot is also written using C++. You can find much more information about godot at https://www.godotengine.org
For supporting the godot Patreon Godot Engine
These are the some of the game engines that i wanted to show you.
I hope you had an idea where to use C++ and at least give a chance to learn this language
Tutorial Hour
(Every week i will try to upload new tutorials)
For following tutorials, you have to download and install IDE(Integrated Development Environment) to your machine.
There are plenty of different IDEs and i will give some of them links below.
The Dev C++ is available for PC (Windows Operating System) and can be downloaded at:
http://www.bloodshed.net/devcpp.html
The CodeBlocks is a Linux friendly IDE and is available at:
http://www.codeblocks.org/
XCode is Mac development environment for free and can be downloaded at:
https://developer.apple.com/xcode/
C++ Week #1 - Tutorial #1
#include
using namespace std;
int main(){
cout << "Hello World";
return 0;
}
#include : We are including this header file to our application to be able to getting input from user and to show output to usercout << : To show outputcin >> : To get inputint main() : Every application has a main function to execute rest codes, all of the other codes are written or called inside main() { ... }If you liked my post then let me know it guys. I will try to upload much more content as well as soon as possible.
---------------------
Thats all for today, hope you enjoyed :)