Karl F. Larsen wrote:

>       I don't understand the fprintf() format. Is this one you use
> Glynn?

The only difference between fprintf() and printf() is that fprintf()
takes a `FILE *' argument to tell it where to put the data.

        printf(...)

is equivalent to

        fprintf(stdout, ...)

-- 
Glynn Clements <[EMAIL PROTECTED]>

Reply via email to