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.
2477 Articles

C++ Arrays

Following is an example, which will show array declaration, assignment and accessing…

Taylor Emma

Numbers in C++

Following a simple example to show few of the mathematical operations on…

Taylor Emma

C++ Functions

The general form of a C++ function definition is as follows: return_typefunction_name( parameter…

Taylor Emma

C++ Decision Making

C++ programming language provides following types of decision making statements. Click the…

Taylor Emma

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