summaryrefslogtreecommitdiff
path: root/reference/C/CONTRIB/OR_PRACTICAL_C/14_12.c
blob: c97d54e5eebda7deb865d3771c60369308b2ed60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#define X_SIZE 60
#define Y_SIZE 30

int matrix[X_SIZE][Y_SIZE];

void init_matrix(void)
{
    int x,y;    /* current element to zero */

    for (x = 0; x < X_SIZE; x++) {
        for (y = 0; y < Y_SIZE; y++) {
            matrix[x][y] = -1;
        }
    }
}