int arr[5];
int len = sizeof(arr) / sizeof(arr[0]);
// returns 5
#include <iostream>
using namespace std;
int main() {
int arr[5] = {4, 1, 8, 2, 9};
int len = sizeof(arr)/sizeof(arr[0]);
cout << "The length of the array is: " << len;
return 0;
}
#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
}
int size = sizeof(arr)/sizeof(arr[0])
#include <iostream>
#define ARRAYSIZE(array) (sizeof(array)/sizeof(array[0]))
int main()
{
int myArray[] = {1,5,46,2,45,7,5};
std::cout<< ARRAYSIZE(myArray);
return 0;
}
// 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;
}
// you can divide the size of an array
// by the size of each element (in bytes)
int len = sizeof(arr) / sizeof(arr[0]);
Code Example |
---|
:: |
:: c++ string remove last character |
Cpp :: |
:: opencv c++ hello world |
:: c++ evaluate expression |
Cpp :: run c++ file putty |
:: |
Cpp :: |
Cpp :: |
:: |
:: |
:: |
Cpp :: |
:: c++ string to int conversion |
:: |
:: |
:: |
:: |
Cpp :: |
:: bitwise count total set bits |
:: print 2d array c++ |
:: sort a 2d vector c++ stl |
:: |
Cpp :: c++ split string by several space |
Cpp :: |
Cpp :: |
:: |
Cpp :: how do you wait in C++ |
:: |
:: c++ 14 for sublime windoes build system |