new array c++ size of code example
Example 1: 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
}
Example 2: length of array c++
#include <iostream>
using namespace std;
int main() {
int arr[5] = {4, 1, 8, 2, 9};
int len = sizeof(arr);
cout << "The length of the array is: " << len;
return 0;
}