Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,851 questions

51,772 answers

573 users

How to declare and initialize 2D (two dimensional) int array in C

4 Answers

0 votes
#include <stdio.h>
 
int main(void)
{
    int arr[5][3] = { 
                    { 1 }, 
                    { 0, 1 }, 
                    { [2] = 13 }, 
                    };             
    
    for (int i = 0; i < 5; i++)
    {
        for (int j = 0; j < 3; j++)
            printf("%d ", arr[i][j]);
        printf("\n");
    }
    
    return 0;
}

 
/*
run:

1 0 0
0 1 0
0 0 13
0 0 0
0 0 0

*/

 



answered Aug 24, 2016 by avibootz
0 votes
#include <stdio.h>
 
int main(void)
{
    int arr[5][3] = {1, 3, 5, 2, 4, 6, 8, 7};
    
    for (int i = 0; i < 5; i++)
    {
        for (int j = 0; j < 3; j++)
            printf("%d ", arr[i][j]);
        printf("\n");
    }
    
    return 0;
}

 
/*
run:

1 3 5
2 4 6
8 7 0
0 0 0
0 0 0

*/

 



answered Aug 24, 2016 by avibootz
0 votes
#include <stdio.h>
 
int main(void)
{
    int arr[5][3] = {{1, 3, 5}, {2, 6, 8}, {4, 9}};
    
    for (int i = 0; i < 5; i++)
    {
        for (int j = 0; j < 3; j++)
            printf("%d ", arr[i][j]);
        printf("\n");
    }
    
    return 0;
}

 
/*
run:

1 3 5
2 6 8
4 9 0
0 0 0
0 0 0

*/

 



answered Aug 24, 2016 by avibootz
0 votes
#include <stdio.h>
 
int main(void)
{
    int arr[5][3] = {[0][0] = 13, [1][1] = 90, [2][0] = 11};
    
    for (int i = 0; i < 5; i++)
    {
        for (int j = 0; j < 3; j++)
            printf("%d ", arr[i][j]);
        printf("\n");
    }
    
    return 0;
}

 
/*
run:

13 0 0
0 90 0
11 0 0
0 0 0
0 0 0

*/

 



answered Aug 24, 2016 by avibootz
...