CS 2734
Computer Organization II
char *strtok(char *s, const char *ct);
The function strtok searches s for tokens
deliminted by characters from ct.
char *fgets(char *s, int n, FILE *stream);
The fgets function reads at most n - 1
characters from the file stream into the array
s. It reads only up through a newline character
and terminates the result by a zero byte. The function
returns s if successful or NULL if
there was an end of file.
SKILL: You should understand how symbol tables are implemented.