summaryrefslogtreecommitdiff
path: root/test-chill/test-cases/examples/chill/scalar_test.c
blob: 733c882544a2ba6e78e388fff432079d2c39d938 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
int a[10][10];
int main() {

	int temp;
	int i, j;

	for (i = 0; i < 10; i++) {
		for (j = 0; j < 10; j++) {
			a[i + 1][j - 1] = a[i][j];
		}

	}

	return 0;

}