Jasbir Singh
0
Q:

array length c

int a[20];
int length;
length = sizeof(a) / sizeof(int);
2
int prices[5] = { 1, 2, 3, 4, 5 };

int size = sizeof prices / sizeof prices[0];

printf("%u", size); /* 5 */
4
int a[17];
size_t n = sizeof(a)/sizeof(a[0]);
7

New to Communities?

Join the community