cpp declare array code example
Example 1: how to make an array c++
int foo [] = { 16, 2, 77, 40, 12071 };
Example 2: array declaration c++
int foo [5];
Example 3: number of elements in c++ array
#include <iostream>
using std::cout;
int a[] = { 1, 2, 3, 4, 5 };
int counta()
{
return sizeof( a ) / sizeof( a[ 0 ] );
}
int countb( int b[] )
{
return sizeof( b ) / sizeof( b[ 0 ] );
}
Example 4: create array c++
int foo[5] = {0};
Example 5: c++ array
const int len = 3;
int arr[len];
arr[0] = 4;
int abc[4]{0,12,3}
Example 6: c++ arrays
int bar [5] = { 10, 20, 30 };