~ubuntu-branches/ubuntu/oneiric/clif/oneiric

« back to all changes in this revision

Viewing changes to tests/test21.ci

  • Committer: Bazaar Package Importer
  • Author(s): Adrian Bunk
  • Date: 2002-01-25 14:05:49 UTC
  • Revision ID: james.westby@ubuntu.com-20020125140549-v5mmddxqlcrgzhd2
Tags: upstream-0.93
ImportĀ upstreamĀ versionĀ 0.93

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
int a[5][5][5][5][5];
 
2
a[0][0][0][0][0] = 1;
 
3
a[1][1][1][1][1] = 1;
 
4
a[2][2][2][2][2] = 1;
 
5
a[3][3][3][3][3] = 1;
 
6
a[4][4][4][4][4] = a[3][3][3][3][3];
 
7
int
 
8
z (int b[][5][5][5][5])
 
9
{
 
10
  printf ("%d\n", b[1][1][1][1][1]);
 
11
}
 
12
printf ("zaciatok");
 
13
z (a);
 
14
exit;