c++ array int*[] code example
Example 1: 1d fixed length arrays c++
void initarr(int arrgender[TOT_MALE][TOT_FEMALE])
{
for(int a =0; a < TOT_MALE;a++)
{
for(int b = 0; b < TOT_FEMALE;b++)
{
arrgender[a][b] = 0;
}
}
Example 2: 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};