int proc(int x)
{ int t[8];
  return t[x];
}
int inf( int x, int y)
{
int t;
if ( x < y ) t = x;
else t = y;
return t;
}

int main( void )
{
int x, y, z, t;
int tab[10];
//expression arithmetique
t = x + y * z;
//expression booleenne
t = x > y && y > z;
//acces dans un tableau
t = tab[5];
//instruction iterative
while ( x > 0 )
     x--;
//instruction alternative
if ( x > y ) 
    z = x;
else
    z = y;
//appel de fonction
z = inf(x, y);
//appel de proc
z = proc( x ); 
return 0;
}

