Answers for "c++ sizee of array"

C
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 "C"

Browse Popular Code Answers by Language