1void initarr(int arrgender[TOT_MALE][TOT_FEMALE])
2 {
3 for(int a =0; a < TOT_MALE;a++)
4 {
5 for(int b = 0; b < TOT_FEMALE;b++)
6 {
7 arrgender[a][b] = 0;
8 }
9 }
1// datatype var_name[howmuch value you need to store] = {values, values}
2int a[5] = {1, 2 3, 4, 5};