×

function pointer as argument in C

Pointers are considered difficult to understand for beginners but pointers can be made to work if you fiddle with them long enough. So, let’s understand this step by step.

What are Pointers?

A pointer is a variable and this variable contains the address of another variable, i.e., it’s a variable which has the address of another variable as its value. The utilization of pointers is to access the memory and also, to govern the address (manipulation of address).

For eg, If a  is a variable of type int having value \0  stored at address 3000 and address of a is assigned to some other variable b, then b  is a pointer variable pointing to memory address stored in it. In simple words, b is a pointer variable containing the address of a (i.e., 3000).

Passing Addresses to Functions

An argument is the value that is passed to the function by the user who calls the function. There are two ways in which arguments are generally passed to functions and they are passed in one of the following ways:

by sending;

a) the values of the arguments
b) the addresses of the arguments

In the first method (a), the value of every actual argument within the calling function is copied into the resemblant formal argument of the function which is called.

In this article, we are more concerned about the second way, i.e., Sending the addresses of the arguments.

Function Pointer as argument in C

The method(b) suggests that Pointers can be passed to a function as arguments. When an address is passed to a function, then the parameters which receive the address should be pointers. In simple words, we are able to relay the reference of a function as a parameter by employing a function pointer. This method of passing parameters is called the Call by Reference method.

Here, an individual must recognize that if any modification is introduced by the function using pointers, then it’ll also mirror the modifications at the address of the passed variable. What this suggests is that any changes made are recognized in both the functions and therefore the calling routine.

Function pointer as argument in C

In above figure,

func1() is a function in which arguments passed are addresses of a and b and no value is returned by this function therefore void data type is mentioned before the function.

In function definition, we have formal arguments as pointer variables that are local to the block in which they are defined.

In C, a function pointer is often created or declared as follows:

(type) (*pointerName) (parameter);

Here,  type       = variable type which is returned by the function

*pointerName  = function pointer

parameter       = list of arguments passed(to the function)

In the call by reference method, what actually happens is that the addresses of actual arguments within the calling function are copied into formal arguments of the called function.

What can we mean by this technical jargon?

This statement simply states that using the formal arguments within the called function is that we are able to make changes within the actual arguments of the calling function.

Let’s understand this using a C program,

main()
{
int x = 5;
int y = 10;


void swap (int*p, int *q);
swap (&x, &y);
printf(“\nx = %d”, x);
printf(“\ny = %d”, y);
           }




void swap (int*p, int*q)
{
int s;
s = *p;
          *p = *q;
          *q = s;
}

Output

x = 10;

y = 5;

In the above code,

→ The address of two numbers is passed to a function swap() whose arguments are pointer type variables.

→ When values are passed, the values assigned to pointer (*p and *q) are changed. It means new values will be assigned to them.

→ This change in addresses is passed to the main() function where they are printed.

*Note: A function pointer can even point to a different function, or in other words that it can hold the address of another function.

            Eg:

            int sum (int x, int y); // function declaration

            int (*x) (int, int); //  declaration of a pointer to a function

           x = sum; // assigning address of sum() to ‘x’ pointer


Related Topics

Enumeration (Enum) in C

Enumeration (Enum) in C: In the C programming language, the enum is referred to as an enumerated type. Enum is a user defined data type consisting of integer values and...

3 minutes read.

Long int in C

We use data type to avoid the type of data to be stored for a variable at the time of declaration.So, we can say that the variable type is known...

3 minutes read.

User Defined Functions in C

C Functions: A function is defined as a block of code that is used to perform some specific task. In functions, we use flower brackets ({}) which contain the set of programming...

5 minutes read.

Classification of Programming language

 Classification of Programming language  The programming language represents a set of instructions compiled along with each other to perform a specific task provided by the CPU (Central Processing Unit). A programming...

3 minutes read.

How to convert a number to words in C

There are many ways available for converting an integer or a number to its word form. For example, consider a number as 12345. This number can be represented in two...

3 minutes read.

Builtin functions of GCC compiler

Certain built-in functions are present in the GCC compiler. These features are as follows: Function_ built in_popcount (x) The number of 1s in data of the integer type can be counted using...

3 minutes read.

Range of int in C

In this session we know about the rage of the int in C language with the suitable examples and the programs. Firstly, we can learn the range of int: The int is...

3 minutes read.

Prime Number code in C

Prime Number Programs in C language In this tutorial, we will learn how to check whether the given number is a prime number or not, and how to print all the...

4 minutes read.

Doubly Linked list in C

To know the Doubly Linked List in C, first we should know about how the Linked List works. Linked List The Linked list is the linear data structure. In the Linked...

5 minutes read.

Exit control loop in C

To examine the termination condition for an exit, we usually use an exit control loop in C. If the evaluation for termination condition results in true, then the control would...

3 minutes read.

Use of fflush(stdin) in C

Use of fflush(stdin) in C Usually, fflush() is only used for the output stream. The purpose is to clean (or flush) the output buffer and transfer the buffered data into...

2 minutes read.

How to use atoi() function in C

Introduction: The atoi() is a function used in C programming language. This function converts string characters to the integer value. The atoi() function converts the input string to the return type of...

4 minutes read.

Isalnum() function in C

Introduction: The isalnum () is a function used in C programming language. This function checks the passing number or argument is an alphanumeric number or not. The alphanumeric number consists of the...

3 minutes read.

Fibonacci series in C

We have learned about the Fibonacci series in mathematics. For a quick recap, A Fibonacci series is the sequence of numbers following a certain pattern i.e., the next number should...

3 minutes read.

How to return a Pointer from a Function in C?

In the C programming language, pointers are variables that hold the address memory location of another variable. We could also input pointers to a function and return pointers from a...

3 minutes read.

Volatile in C

Introduction A volatile keyword is a qualifier in C. Qualifiers are nothing but keywords which are used to modify the properties of a variable. Qualifiers are of two types: 1) Const The const type...

3 minutes read.

How to use floor() function in C

Introduction: The floor() used as a function in the C programming language. This function uses to return the largest or most significant integer value. The integer value is smaller than...

3 minutes read.

Star Program in C Language

Star Program in C Star patterns are a sequence of * or any other character used to construct any pattern or any like-square geometric form, triangle, hollow square, pyramid, rhombus, etc.  Many programmers worldwide highly...

4 minutes read.

abs() function in C

abs() function is a built-in function present in the stdlib.h header file. It returns an integer value. abs() function converts a negative value into a positive value. For example, if...

4 minutes read.

fopen() function in C

fopen() function, is one of the file handling functions. It is used to open the existing file and perform operations on the file. If the file does not exist, it...

3 minutes read.