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 – Unions

A union is a special data type available in C that allows to store…

Taylor Emma

C – Structures

Arrays allow to define type of variables that can hold several data…

Taylor Emma

C – Strings

Strings are actually one-dimensional array of characters terminated by a null character '\0'. Thus…

Taylor Emma

C – Pointers

Pointers in C are easy and fun to learn. Some C programming…

Taylor Emma

C – Arrays

Arrays a kind of data structure that can store a fixed-size sequential…

Taylor Emma

C – Scope Rules

A scope in any programming is a region of the program where…

Taylor Emma

C – Functions

A function is a group of statements that together perform a task.…

Taylor Emma

C – Loops

You may encounter situations, when a block of code needs to be…

Taylor Emma

C – Decision Making

Decision making structures require that the programmer specifies one or more conditions…

Taylor Emma

C – Operators

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

Taylor Emma