A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

C program to find the size of the array using macro
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)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now