Call by Value and Call by Reference

Call by value and Call by reference is the extended part of Functions. Let's see what's it? For this, you need to understand the concept...

Structures and Union

Unlike the array, which stores the data in the variables of the same data type, Structures and Union are used for data storage in variables...

Pointers

So, now let's begin with the Advanced Part of C Programming. The first concept, we are going to learn about is pointers. So what are pointers?...

Functions

Functions are basically the block of codes which we have to use multiple times in the program like loops. Functions can reduce the number...

One-Dimensional and Two-Dimensional Array

After learning the basics of array, let's see what's One-Dimensional Array and Two-Dimensional Array? One-Dimensional Array is normal array,...

Array

Array is collection of variables having the same data type. Suppose, you need to read marks of 10 students and print them. For this problem,...