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.

Files in C Programming Language

Suryateja Pericherla Categories: C Programming. No Comments on Files in C Programming Language

This article provides a comprehensive overview of files in C programming language along with relevant examples.   So far we have been using scanf and printf functions for reading and writing data to the console. This is fine as long as the data is less. However, many real world problems involve large amounts of data. […]

Read the rest of this entry »

Unions in C: Syntax and Example Program

Suryateja Pericherla Categories: C Programming. No Comments on Unions in C: Syntax and Example Program

In this article you will learn about Unions in C language. First you will learn what is a Union, its syntax and then an example program demonstrating unions in C language.   Unions have the same syntax as that of a structure since both of them are similar. However, there is a major difference between […]

Read the rest of this entry »

Structures in C Programming

Suryateja Pericherla Categories: C Programming. No Comments on Structures in C Programming

This article provides a comprehensive overview of structures in C programming language along with example programs.   We know that arrays can be used to represent a collection of elements of the same data type like int, float etc. They cannot be used to hold a collection of different types of elements.   C supports […]

Read the rest of this entry »

Pointers in C Porgramming

Suryateja Pericherla Categories: C Programming. No Comments on Pointers in C Porgramming

This article provides a comprehensive overview of pointers in C programming language along with useful example programs.   A pointer is a derived data type in C. It is built from one of the fundamental data types available in C.   Pointers contain memory addresses as their values. Since these memory addresses are the locations […]

Read the rest of this entry »

Preprocessor Directives in C

Suryateja Pericherla 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 »

Types of Variables in C Language

Suryateja Pericherla Categories: C Programming. No Comments on Types of Variables in C Language

In this article we will learn about types of variables in C language. We will start with what is variable and then learn about types of variables like local variables and global variables.   A variable is a memory location inside memory which is referred using a name. The value inside a variable changes throughout […]

Read the rest of this entry »

Functions in C Programming Language

Suryateja Pericherla Categories: C Programming. No Comments on Functions in C Programming Language

This article provides a comprehensive overview of functions in C programming language along with easy to understand example programs.   Until now, in all the C programs that we have written, the program consists of a main function and inside that we are writing the logic of the program. The disadvantage of this method is, […]

Read the rest of this entry »

String Manipulation in C Programming

Suryateja Pericherla 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 »
Blogarama - Blog Directory