C++C++11C++14C++17Introduction to C++Learn C++

Learn about Data Structures in C & C++

In general, when we do programming we have a lot of variables and some of these variables are properties of an object, for example if we want to make a database about students in C++, each student has similar properties to store. We can generalize all these properties in a single group. In this post we will explain structs in detail.In C & C++ programming; aData Structure(struct)…
Read more
C++Introduction to C++Learn C++

Learn About the Main Function in C++

The Main Functionis the main part of an application coded in C++, it is the designated entry point to a program that is executed in an operating system (on Windows, iOS, Mac-OS, Android, Linux etc.). Every C++ application program has a main function which starts all application statements, and functions. We can create C++ files without the main function and we can use them as a library…
Read more
C++Introduction to C++Learn C++

Learn How To Use Comments In C++

In all programming languages, comments are used to explain something in a normal way, something like post-its you put into lines to remember or to notify other developers. In C and C++, there are two kinds of commenting character series;1. Single Line Commenting with //Double forward slashes, // is used as a single-line comment. They are good to add some note before your code lines or after your…
Read more
Introduction to C++Learn C++

Easily Learn Powerful C++ Programming Language Structure

In general most of codes in programming are text lines, that means you can read codes my any editors i.e. with Notepad, Word, etc. on Windows. C and C++ Compilers, compiles (we can say converts) these lines to machine codes that directly runs in that operating system and links as a executable (*.exe) file. A Compiler (C or C++ Compiler, etc.) is a computer program that converts one programming…
Read more