In the last tutorial we discussed strcat() function, which is used for concatenation of one string to another string. In this guide, we will see… [Read More]
C strcat() Function with example
The strcat() function is used for string concatenation. It concatenates the specified string at the end of the another specified string. In this tutorial, we… [Read More]
C Tutorial – Learn C Programming with examples
Learning C programming is easy if you follow the tutorials in the given order and practice C programs along the way. This C tutorial is… [Read More]
Pointers in C Programming with examples
A pointer is a variable that stores the address of another variable. Unlike other variables that hold values of a certain type, pointer holds the… [Read More]
C – Pointer to Pointer (Double Pointer) with example
We already know that a pointer holds the address of another variable of same type. When a pointer holds the address of another pointer then… [Read More]
Passing pointer to a function in C with example
In this tutorial, you will learn how to pass a pointer to a function as an argument. To understand this concept you must have a… [Read More]
C – Function Pointer with examples
In C programming language, we can have a concept of Pointer to a function known as function pointer in C. In this tutorial, we will… [Read More]
Functions in C Programming with examples
In this tutorial, we will learn functions in C programming. A function is a block of statements that performs a specific task. Let’s say you… [Read More]
Function call by reference in C Programming
Before we discuss function call by reference, lets understand the terminologies that we will use while explaining this: Actual parameters: The parameters that appear in… [Read More]
Function call by value in C programming
Function call by value is the default way of calling a function in C programming. Before we discuss function call by value, lets understand the… [Read More]
Arrays in C programming with examples
An array is a group (or collection) of same data types. For example an int array holds the elements of int types while a float… [Read More]
Passing array to function in C programming with example
Just like variables, array can also be passed to a function as an argument . In this guide, we will learn how to pass the… [Read More]
Pointer and Array in C programming with example
In this guide, we will learn how to work with Pointers and arrays in a C program. I recommend you to refer Array and Pointer… [Read More]
Two dimensional (2D) arrays in C programming with example
An array of arrays is known as 2D array. The two dimensional (2D) array in C programming is also known as matrix. A matrix can… [Read More]
Structure in C programming with examples
Structure is a group of variables of different data types represented by a single name. Let’s take an example to understand the need of a… [Read More]