Programming Examples
C program to initialize 10x10 2d array with numbers between 0 and 99 and then print it
Define a two dimensional array ‘int a[10][10]’. Write a ‘C’ program to initialize this array with numbers between 0 and 99. Then print the contents of ‘a’.
Solution
#include<stdio.h>
int main()
{
int a[10][10]={ {0,1,2,3,4,5,6,7,8,9},
{10,11,12,13,14,15,16,17,18,19},
{20,21,22,23,24,25,26,27,28,29},
{30,31,32,33,34,35,36,37,38,39},
{40,41,42,43,44,45,46,47,48,49},
{50,51,52,53,54,55,56,57,58,59},
{60,61,62,63,64,65,66,67,68,69},
{70,71,72,73,74,75,76,77,78,79},
{80,81,82,83,84,85,86,87,88,89},
{90,91,92,93,94,95,96,97,98,99}
},i,j;
for(i=0;i<10;i++)
{
for(j=0;j<10;j++)
{
printf("%d ",a[i][j]);
}
printf("\n");
}
return 0;
}
Output
0Â 1Â 2Â 3Â 4Â 5Â 6Â 7Â 8Â 9
10Â 11Â 12Â 13Â 14Â 15Â 16Â 17Â 18Â 19
20Â 21Â 22Â 23Â 24Â 25Â 26Â 27Â 28Â 29
30Â 31Â 32Â 33Â 34Â 35Â 36Â 37Â 38Â 39
40Â 41Â 42Â 43Â 44Â 45Â 46Â 47Â 48Â 49
50Â 51Â 52Â 53Â 54Â 55Â 56Â 57Â 58Â 59
60Â 61Â 62Â 63Â 64Â 65Â 66Â 67Â 68Â 69
70Â 71Â 72Â 73Â 74Â 75Â 76Â 77Â 78Â 79
80Â 81Â 82Â 83Â 84Â 85Â 86Â 87Â 88Â 89
90Â 91Â 92Â 93Â 94Â 95Â 96Â 97Â 98Â 99