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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,038 questions

40,790 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
...