summaryrefslogtreecommitdiff
path: root/test-chill/test-cases/examples/chill/test_lex_order.c
blob: 1a3b26d409f2964a8fc70e6501e872f04ed9b0d5 (plain)
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
int main() {

	int m, n;
	int a[10];
        int b[10]; 
        int c[10];
	int i, j;
	for (i = 0; i < n; i++) {
		for (j = 0; j < n; j++) {
			b[j] = a[j];
		}

           
                
                for (j = 0; j < n; j++) {
			a[j+1] = 6;
		}

                for (j = 0; j < n; j++) {
			c[j] = a[j];
		}


       

	}

	return 0;

}