#include <stdio.h>

int main() {
    int arr[2][3][4];
    for(int i=0;i<2;i++)
    {
        for(int j=0;j<3;j++)
        {
            for(int k=0;k<4;k++)
            {
                printf("%u",&arr[i][j][k]);
            }
        }
    }
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: