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

scanf

scanf


  1  definition  found 
 
  From  The  Free  On-line  Dictionary  of  Computing  (13  Mar  01)  [foldoc]: 
 
  scanf 
 
  The  {C}  library  routine  that  reads  data  from  the  {standard 
  input}  {stream}  {stdin}  into  the  locations  given  by  each  entry 
  in  its  argument  list.  The  first  argument  is  a  format  string 
  which  controls  interpretation  of  the  input  and  each  subsequent 
  argument  points  to  a  variable  with  a  type  that  corresponds  to 
  a  type  specifier  in  the  format-string. 
 
  {Unix  manual  page}:  scanf(3). 
 
  (1995-02-23)