Answers for "sizes of an array c+++"

C++
2

length of array in cpp

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

length of array 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

Browse Popular Code Answers by Language