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 »