Get Affordable VMs - excellent virtual server hosting


browse words by letter
a b c d e f g h i j k l m n o p q r s t u v w x y z
fprintf


fprintf


  1  definition  found 
 
  From  The  Free  On-line  Dictionary  of  Computing  (13  Mar  01)  [foldoc]: 
 
  fprintf 
 
    Variant  of  the  {C}  library  routine  {printf}  which 
  prints  to  a  given  {stream}.  E.g. 
 
  fprintf(stderr,  "%s:  can't  open  file  \"%s\".", 
  argv[0],  argv[1]); 
 
  which  prints  to  the  "{standard  error}"  output  stream. 
 
  (1995-04-25)