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 – File I/O

The last chapter explained the standard input and output devices handled by…

Taylor Emma

C – Input & Output

When we say Input, it means to feed some data into a program.…

Taylor Emma

C – typedef

The C programming language provides a keyword called typedef, which you can use…

Taylor Emma

C – Bit Fields

Suppose your C program contains a number of TRUE/FALSE variables grouped in…

Taylor Emma

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