Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.

Preprocessor Directives in C

Categories: C Programming. 2 Comments on Preprocessor Directives in C

This article provides a comprehensive overview of preprocessor directives in C programming language along with relevant examples.   C provides many features like structures, unions and pointers. Another unique feature of the C language is the preprocessor. The C preprocessor provides several tools that are not present in other high-level languages.   The programmer can […]

Read the rest of this entry »

String Manipulation in C Programming

Categories: C Programming. 1 Comment on String Manipulation in C Programming

In this article we will learn about String Manipulation in C Programming. We will see different examples on manipulating strings.   As we have already seen in the previously, a string is a collection of characters and strings are maintained as character arrays in C programs.   The common operations or manipulations that can be […]

Read the rest of this entry »

Control Statements in C Programming

Categories: C Programming. 3 Comments on Control Statements in C Programming

This article provides a comprehensive overview of control statements in C programming with their syntax and control flowcharts.   In C, until so far, in all the programs, the control is flowing from one instruction to next instruction. Such flow of control from one instruction to next instruction is known as sequential flow of control. […]

Read the rest of this entry »

Type Conversion and Casting in C Programming

Categories: C Programming. No Comments on Type Conversion and Casting in C Programming

In this article we will understand what is type conversion and casting in C programming language. First we will understand the definition followed by relevant examples of type conversion and casting.   Converting a data type of an expression to another data type is known as type conversion. Here expression refers to either a variable […]

Read the rest of this entry »