#include #include //myArrayNested4.cpp // inner one nested array within //one outer array using namespace std; // section 3,{{ }}, typedef int threedim[3][3][3]; void showArray(threedim); int main(){ const int sec=3, row = 3, unit= 3; int n1[sec][row][unit] = { {{1,2,3 }, {4,5,6},{7,8,9}}, {{11,12,13 }, {14,15,16},{17,18,19}}, {{21,22,23 }, {24,25,26},{27,28,29}} }; showArray(n1); return 0; } void showArray(threedim tdim) { char str1[4]={'A','B','C','D'}; double sum; for(int i=0; i< 3; i++) { cout<<"\n section :" << str1[i] <