×

Passing Array to Function in C

Need to pass Arrays?

The need to pass arrays to a function arises when we need to pass a list of values to a given function.

During the course of our programming journey in C, there are various instances which may require passing more than one variable (variables of the same type) to a function. In such cases, we can declare and initialize an array and pass that array into the function rather than declaring multiple variables and passing them one by one as parameters of the function.

The arrays can be passed to function in one of the following ways:

1) By declaring array as a parameter in the function

Eg: int sum (int arr[]);

2) By declaring a pointer in the function to hold the base address of the array

Eg: int sum (int* ptr);

Before jumping into the depths of this topic, let’s discuss the key aspects in order to clearly understand the given topic.

Array

An array can be defined as a collection of items or logically related variables of identical data type which are stored in contiguous memory locations.

The drawback with using an array is that, once the size of array is declared it cannot be changed and hence it may result in the size of array declared which may not be sufficient for the task it was declared for.

Declaration :

data_type  name_of_array[sizeOfArray];

Example:

int arr[15];

Function

A function is a self-contained block of statements that performs a specific task. A function wraps a number of statements which are repeated in a program into a single unit or block. This wrapping of statements(unit) is identified by a name known as a function name.

Note: Every C program no matter how easy and low in the number of lines of code will always consist of at least one function, which is the main() function.

Declaration :

returnType  functionName( parameters)
 {
   		function body
 }

Example:       

#include<stdio.h>
int multiplication();  // function declaration


int main()
{   


   int output;   //local variable definition   
    
   output = multiplication();


    printf("The product of the two numbers is: %d\n",output);
    return 0;
}


int multiplication()
{
    int num1 = 5;
    int num2 = 15;


    return num1 * num2;
}

Passing Array to function in C

Method 1:  By declaring array as a parameter in the function

We can pass the one dimensional and multidimensional array in function as an argument in C.

We pass the array to a function in order to pass a list of values to the function and to make it accessible within the function.

Here, one must follow that when an entire array is passed to a function, then the corresponding function can access all the elements which are declared in the array.

Let’s understand this method using a program

Program 1: Passing Array to function in C using Method 1

#include <stdio.h>


int sum(int arr[])
{
int array_sum  =0;
for (int i = 0; i<5; ++i) 
{
array_sum += arr[i]; 
}
return array_sum; 
}  
int main() 
{   
int result, array[] = {3,6,9,12,15};   
result = sum(array);     // function call
printf("The Sum of the passed values is = %d", result);   
return 0;
}

Output of the program:

Passing Array to Functions in C

Method 2: By declaring a pointer in the function to hold the base address of the array

When we pass the address of an array while making a function call, then this method of calling a function is referred to as call by reference.

Here, one must follow that when an address is passed as an argument in the function, the pointer in the function will receive the address(location) of the corresponding array.

Declaration : int fun (int *ptr) { ... }

Note:

We must follow that, when any change is made in the array using pointers in the functions, the corresponding array will also be affected by this.

For Example, the array element arr[1] = 33, and in function we code *(ptr+1) = 65,

then the element which is stored at arr[1] becomes equal to 65.

Program 2: Passing Array to function in C using Method 2

#include <stdio.h>


int func_one(int array[])
{
    for (int i = 0; i < 5; i++)
    {
        printf("The value at %d is %d\n", i, array[i]);
    }
    /* array[0] = 382; if you change any value here, it gets reflected in main() */
    return 0;
}




void func_two(int *ptr)
{
    for (int i = 0; i < 5; i++)
    {
        printf("The value at %d is %d\n", i, *(ptr + i));
    }
    *(ptr + 2) = 1234;
}




void func_three(int arr[2][2])
{
    for (int i = 0; i < 2; i++)
    {
        for (int j = 0; j < 2; j++)
        {
            printf("The value at %d, %d is %d\n", i, j, arr[i][j]);
        }
    }
}




int main()
{
    int arr[][2] = {{3, 69}, {6, 9}};
   
    func_three(arr); // function call
    return 0;
}

Output of the program:

Passing Array to Functions in C

 

Conclusion:

In C programming, there are various problems which may require us to pass multiple variables of the same type into a function and declaring each variable separately and then passing it into the function will not only take more time but will also reduce the efficiency of the program.

The solution to such instances is to pass arrays to a function when we need to pass a list of values to a given function.

The arrays can be passed to function in one of the following ways:

  1. By declaring array as a parameter in the function
  2. By declaring a pointer in the function to hold the base address of the array.

Related Topics

C program to Store Information of Students Using Structure

What is the Structure in C? User-defined data types include structures. Structures aid your ability to combine things of various categories into a single group. Like arrays, it operates similarly. A...

3 minutes read.

Random Access - Lseek in C

Introduction lseek is a system call that is used to alter the location of the read/write pointer of a file descriptor. The lseek system call basically moves the current read/write location...

4 minutes read.

Expressions in C

Expressions in C: In the C programming language, an expression defines a formula in which the operands are linked to each other by using operators to compute the value. The operand...

4 minutes read.

Int in C

The keyword int in C programming stands for integer and it is a data type which is used for variable declarations or declaration of functions of different types. Similar to...

4 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.

Displaying Array in C

Reference a collection of variables of similar data type in an array using a single element. The parts are stored next to each other. When declaring an array, you must specify...

4 minutes read.

Type qualifiers in C

Type qualifiers in C: In the C programming language, type qualifiers are the keywords that prepend to the variables to change their accessibility, i.e., we can tell that the type...

4 minutes read.

Exponential() in C

Introduction: In C language, there are available many types of functions. The exponential() function is one of them. It is a mathematical function. This article describes using the pow() property to...

3 minutes read.

Factorial Program in C using For Loop

Before move on the factorial program. We have to know about the for loop in C programming language. The syntax of the For Loop is: for (initialization statement; test expression; an increment...

3 minutes read.

C Program to Find the Largest Number using Ternary Operator

In this tutorial, we will write some program to determine which of the provided integers is larger using the ternary operator, also known as the conditional operator in C. Ternary Operator: The ternary...

3 minutes read.

Built-in functions in C

The function is a set of instructions and statements enclosed in the "{}" delimiter. In c, there are two types of functions. Pre-define functions/ Built-in functionsUser define function. Built-in functions in C:- These...

8 minutes read.

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...

3 minutes read.

Ceil function in C

Introduction In the C Programming Language, the ceil function is a library function which is used to obtain the ceil value, i.e., it returns the smallest integer that is greater than...

4 minutes read.

Decimal to Binary in C

What is a decimal number? A decimal number is a number represented in the decimal number system. This system of binary conversion uses base 10 to represent numbers, i.e. the digits...

3 minutes read.

Positioning of file in C

Positioning() function in c The fseek() function is utilized to change the document position of the stream . The fully extent of value from the source should be one of the...

3 minutes read.

C Pointers

Pointers in C A pointer is a variable, which contains the address of another variable, i.e., it’s a variable which has the address of another variable as its value. The utilization...

4 minutes read.

LCM of two numbers in C

LCM is a mathematical term which stands for Least Common Multiple. LCM of any two numbers is the smallest positive value(number) which is evenly divisible by the two given numbers. Consider...

4 minutes read.

Sum of digits in C++

Sum of digits in C++ There are various ways to find the sum of the digits of a number in C++. We can use containers like arrays or other simple cases...

4 minutes read.

Difference between Pre-increment and Post-increment in C

Increment operators are the kind of operators that are used to increment the cost of the operand by way of 1. In different words, the increment operator is an operator...

4 minutes read.

Goto and Labels in C

Introduction Goto in C: The goto statement is known as the jump statement in C. The goto is used to transfer the control of a program to a predefined label. The goto...

3 minutes read.