Taylor Emma

A senior editor for The Mars that left the company to join the team of SenseCentral as a news editor and content creator. An artist by nature who enjoys video games, guitars, action figures, cooking, painting, drawing and good music.
2363 Articles

C++ Loop Types

C++ programming language provides the following types of loops to handle looping…

Taylor Emma

C++ Operators

An operator is a symbol that tells the compiler to perform specific…

Taylor Emma

Storage Classes in C++

A storage class defines the scope (visibility) and life time of variables…

Taylor Emma

C++ Modifier Types

C++ allows the char, int, and double data types to have modifiers preceding them. A modifier…

Taylor Emma

C++ Constants/Literals

Constants refer to fixed values that the program may not alter and…

Taylor Emma

C++ Variable Scope

A scope is a region of the program and broadly speaking there…

Taylor Emma

Variable Definition & Initialization in C++

Some examples are: externint d, f      // declaration of d and f int d =3, f =5;// definition and…

Taylor Emma

C++ Primitive Built-in Types

C++ offer the programmer a rich assortment of built-in as well as…

Taylor Emma

Comments in C++

C++ supports single line and multi-line comments. All characters available inside any…

Taylor Emma

C++ Program Structure

Let us look at a simple code that would print the words Hello…

Taylor Emma