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 – Variable Arguments

Sometimes, you may come across a situation, when you want to have…

Taylor Emma

C – Recursion

Recursion is the process of repeating items in a self-similar way. In…

Taylor Emma

C – Error Handling

As such, C programming does not provide direct support for error handling…

Taylor Emma

C – Type Casting

Type casting is a way to convert a variable from one data…

Taylor Emma

C – Header Files

A header file is a file with extension .h which contains C function declarations…

Taylor Emma

C – Preprocessors

The C Preprocessor is not a part of the compiler, but is a separate…

Taylor Emma

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