/* Prototype for triple : */
double triple(double);
...
...
/* Call triple : */
y = triple(3.3 * z1);
...
...
/* Declare triple : */
double triple(double x) {
return x*3;
}
|
| ...previous | up (conts) | next... |