Next | The Identity Function | 16 |
node *newnode = malloc(sizeof(node));
*head = newnode;
Fortran 77 has no dynamic allocation
Also no pointers
What to do??
We need Fortran equivalents of the C & and * operators
Next | Copyright © 2001 M. J. Dominus |