Answers for "how to find the length of an array in c++"

C
20

array length in c++

int a[20];
int length;
length = sizeof(a) / sizeof(int);
Posted by: Guest on October-25-2020
14

array length c++

#include <iostream>
using namespace std;

#define size(type) ((char *)(&type+1)-(char*)(&type))

int main(){
  int arr[5] = {1, 2, 3, 4, 5};
  cout << size(arr) / size(arr[0]) << endl; //returns 5
  //alternatively
  cout << sizeof(arr) / sizeof(int) << endl; //returns 5
}
Posted by: Guest on July-14-2020
1

length of array in cpp

int size = sizeof(arr)/sizeof(arr[0])
Posted by: Guest on May-25-2020
3

array length c++

// array::size
#include <iostream>
#include <array>

int main ()
{
  std::array<int,5> myints;
  std::cout << "size of myints: " << myints.size() << std::endl;
  std::cout << "sizeof(myints): " << sizeof(myints) << std::endl;

  return 0;
}
Posted by: Guest on May-07-2020

Code answers related to "how to find the length of an array in c++"

Code answers related to "C"

Browse Popular Code Answers by Language