initialize empty array c++ code example
Example 1: c++ initialise array
int nCount[] = {1, 2, 3, 4, 5};
Example 2: 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 ] ); // works, since a[] is an array
}
int countb( int b[] )
{
return sizeof( b ) / sizeof( b[ 0 ] ); // fails, since b[] is a pointer
}
Example 3: c++ initialize array
int arr[3] = {1, 5, 4};
Example 4: initialize array c++
int foo [5];
Example 5: how to make a array in c++
// datatype var_name[howmuch value you need to store] = {values, values}
int a[5] = {1, 2 3, 4, 5};