c++ get length of array
int arr[5];
int len = sizeof(arr) / sizeof(arr[0]);
// returns 5
c++ get length of array
int arr[5];
int len = sizeof(arr) / sizeof(arr[0]);
// returns 5
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;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us