next up previous
Next: Types de variables Up: Mémento C - shell, Previous: Constantes

Fonctions

Fonctions
Définition
double f(int i,int j,double x)
{
  int k,l;
  double y,z;
  ...
  return z;
}
void g(int i)
{
  if (i==2) {
    return;
  }
  ...
}
Déclaration
void g(int i);



R. Keriven (Cermics)