how to find the length of an array in c code example

Example 1: size of an array c

int a[20];
int length;
length = sizeof(a) / sizeof(int);

Example 2: array length c

int prices[5] = { 1, 2, 3, 4, 5 };

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

printf("%u", size); /* 5 */

Example 3: how to find length of array in java

let coolCars = ['ford', 'chevy'];
//to find length, use the array's built in method
let length = coolCars.length;
//length == 2.

Example 4: size of an array c

int a[]= { 1, 2, 3, 4, 5, 6, 7 };
int length = sizeof(a) / sizeof(a[0]); //return 7

Example 5: get length of array in c

int a[17];
size_t n = sizeof(a)/sizeof(a[0]);

Example 6: get length of array

// In Javascript
var x = [1,2,3];
console.log(x.length);

Tags: