Q:

Define a Macro to find total number of elements in C

belongs to collection: C Preprocessors Programs

0

Define a Macro to find total number of elements in C

We have to define a Macro to find total number of elements in C programming language.

Macro Definition:

    #define ARRAY_LEN(ARRAY_NAME, TYPE)(sizeof(ARRAY_NAME)/sizeof(TYPE))

All Answers

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

Program:

#include <stdio.h>

#define ARRAY_LEN(ARRAY_NAME, TYPE)(sizeof(ARRAY_NAME)/sizeof(TYPE))

int main()
{
	int iArr[10];
	float fArr[5];
	char cArr[50];
	
	printf("Total elements in iArr: %d\n", ARRAY_LEN(iArr, int));
	printf("Total elements in fArr: %d\n", ARRAY_LEN(fArr, float));
	printf("Total elements in cArr: %d\n", ARRAY_LEN(cArr, char));
	
	return 0;
}

Output

Total elements in iArr: 10
Total elements in fArr: 5
Total elements in cArr: 50

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
Define a Macro to round a float value to nearest i... >>
<< Macro Arguments Evaluation in C...