Ken wrote:
> > void main()
>
> DOH! DOH! DOH! DOH! If the book you have claims to teach "ANSI C",
> burn it.
>
> int main()
As we're on the ANSI C track, that should be
int main(void)
or
int main(int argc, char **argv)
or
int main(int argc, char **argv, char **envp)
> Just type in "info" and follow the instructions are the top
> of the screen. Info isn't the easiest thing to learn to use
> but it is well worth it in the long run. I use to be a man
> page bigot until I took the time to learn Info.
To read Info files, use `C-h i' in (X)Emacs. The standalone Info
reader is really poor.
--
Glynn Clements <[EMAIL PROTECTED]>