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]