Q:

C program to find the size of the array using macro

0

C program to find the size of the array using macro

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Given an array, we have to create a macro to find the size of the given array using C program.

Program:

The source code to find size of array using macro is given below. The given program is compiled and executed using GCC compile on UBUNTU 18.04 OS successfully.

// C program to find size of array using macro

#include <stdio.h>

#define SizeOfArray(arr) sizeof(arr) / sizeof(arr[0])

int main()
{
    int arr[] = { 1, 2, 3, 4, 5 };

    printf("Size of array 'arr' is: %ld\n", SizeOfArray(arr));

    return 0;
}

Output:

Size of array 'arr' is: 5

Explanation:

Here, we created an array arr of 5 integers which initialized with 1, 2 ,3, 4, 5 elements. We also created a macro SizeOfArray() to get the size of the array. Then we printed the result on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

One Dimensional Array Programs / Examples in C programming language

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C program to find the ceiling element of the given... >>
<< C program to find the union of two arrays...