c++ initialize array code example
Example 1: initialize an array in c++
int nums[100] = {0};
int nums[5] = {1,2,3,4,5};
Example 2: how to make an array c++
int foo [] = { 16, 2, 77, 40, 12071 };
Example 3: c++ initialise array
int nCount[] = {1, 2, 3, 4, 5};
Example 4: 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 5: c++ initialize array
int arr[3] = {1, 5, 4};
Example 6: initialize array c++
int foo [5];