SCANF.3
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:7k
源码类别:

操作系统开发

开发平台:

C/C++

  1. SCANF(3)                  Minix Programmer's Manual                   SCANF(3)
  2. NAME
  3.      scanf,  fscanf,  sscanf,  vscanf,  vfscanf,  vsscanf  -  formatted  input
  4.      conversion
  5. SYNOPSIS
  6.      #include <stdio.h>
  7.      #include <stdarg.h>
  8.      int scanf(const char *format [, pointer] ...)
  9.      int fscanf(FILE *stream, const char *format [, pointer] ...)
  10.      int sscanf(const char *s, const char *format [, pointer] ...)
  11.      int vscanf(const char *format, va_list args)
  12.      int vfscanf(FILE *stream, const char *format, va_list args)
  13.      int vsscanf(const char *s, const char *format, va_list args)
  14. DESCRIPTION
  15.      Scanf reads from the standard input stream stdin.  Fscanf reads from  the
  16.      named  input  stream.   Sscanf  reads  from the character string s.  Each
  17.      function reads characters, interprets them according  to  a  format,  and
  18.      stores the results in its arguments.  Each expects as arguments a control
  19.      string format, described below, and a set of pointer arguments indicating
  20.      where the converted input should be stored.
  21.      The v*scanf functions can be used to make functions like the first  three
  22.      by using the stdarg(3) method to process the argument pointers.
  23.      The control string usually contains conversion specifications, which  are
  24.      used to direct interpretation of input sequences.  The control string may
  25.      contain:
  26.      1.  Blanks, tabs or newlines, which match optional  white  space  in  the
  27.          input.
  28.      2.  An ordinary character (not %) which must match the next character  of
  29.          the input stream.
  30.      3.  Conversion specifications, consisting of the character %, an optional
  31.          assignment  suppressing  character  *,  an optional numerical maximum
  32.          field width, and a conversion character.
  33.      A conversion specification directs  the  conversion  of  the  next  input
  34.      field;   the  result  is  placed  in  the  variable  pointed  to  by  the
  35.      corresponding argument, unless assignment suppression was indicated by *.
  36.      An input field is defined as a string of non-space characters; it extends
  37.      to the  next  inappropriate  character  or  until  the  field  width,  if
  38.      specified, is exhausted.
  39.      The conversion character indicates the interpretation of the input field;
  40.      the  corresponding pointer argument must usually be of a restricted type.
  41.      The following conversion characters are legal:
  42.                                 May 15, 1985                                 1
  43. SCANF(3)                  Minix Programmer's Manual                   SCANF(3)
  44.      %   a single `%' is expected in the input at this point; no assignment is
  45.          done.
  46.      d   a decimal integer is expected; the corresponding argument  should  be
  47.          an integer pointer.
  48.      o   an octal integer is expected; the corresponding argument should be  a
  49.          integer pointer.
  50.      x   a hexadecimal integer is expected; the corresponding argument  should
  51.          be an integer pointer.
  52.      s   a character string is expected; the corresponding argument should  be
  53.          a  character  pointer pointing to an array of characters large enough
  54.          to accept the string and a terminating `',  which  will  be  added.
  55.          The input field is terminated by a space character or a newline.
  56.      c   a character is expected;  the  corresponding  argument  should  be  a
  57.          character   pointer.   The  normal  skip  over  space  characters  is
  58.          suppressed in this case; to read the next  non-space  character,  try
  59.          `%1s'.   If a field width is given, the corresponding argument should
  60.          refer to a character array, and the indicated number of characters is
  61.          read.
  62.      efg a floating point number is expected;  the  next  field  is  converted
  63.          accordingly  and  stored  through  the  corresponding argument, which
  64.          should be a pointer to a float.  The input format for floating  point
  65.          numbers  is an optionally signed string of digits possibly containing
  66.          a decimal point, followed by an optional exponent field consisting of
  67.          an E or e followed by an optionally signed integer.
  68.      [   indicates a string not to be delimited by space characters.  The left
  69.          bracket  is  followed by a set of characters and a right bracket; the
  70.          characters between the brackets define a set of characters making  up
  71.          the  string.  If the first character is not circumflex (^), the input
  72.          field is all characters until the first  character  not  in  the  set
  73.          between  the  brackets; if the first character after the left bracket
  74.          is ^, the input field is all characters  until  the  first  character
  75.          which  is  in  the  remaining set of characters between the brackets.
  76.          The corresponding argument must point to a character array.
  77.      The conversion characters d, o and x may be capitalized or preceded by  l
  78.      to  indicate that a pointer to long rather than to int is in the argument
  79.      list.  Similarly, the conversion characters e, f or g may be  capitalized
  80.      or  preceded  by  l to indicate a pointer to double rather than to float.
  81.      The conversion characters d, o and x may be preceded by h to  indicate  a
  82.      pointer to short rather than to int.
  83.                                 May 15, 1985                                 2
  84. SCANF(3)                  Minix Programmer's Manual                   SCANF(3)
  85.      The scanf  functions  return  the  number  of  successfully  matched  and
  86.      assigned  input  items.   This can be used to decide how many input items
  87.      were found.  The constant EOF is returned upon end of  input;  note  that
  88.      this  is  different  from  0, which means that no conversion was done; if
  89.      conversion was intended, it was frustrated by an inappropriate  character
  90.      in the input.
  91.      For example, the call
  92.                int i; float x; char name[50];
  93.                scanf("%d%f%s", &i, &x, name);
  94.      with the input line
  95.                25   54.32E-1  thompson
  96.      will assign to i the value 25, x the value 5.432, and name  will  contain
  97.      `thompson' .  Or,
  98.                int i; float x; char name[50];
  99.                scanf("%2d%f%*d%[1234567890]", &i, &x, name);
  100.      with input
  101.                56789 0123 56a72
  102.      will assign 56 to i, 789.0 to x, skip `0123', and place the string `56'
  103.      in name.  The next call to getchar will return `a'.
  104. SEE ALSO
  105.      atof(3), getc(3), printf(3), stdarg(3).
  106. DIAGNOSTICS
  107.      The scanf functions return EOF on end of input, and  a  short  count  for
  108.      missing or illegal data items.
  109. BUGS
  110.      The success of literal matches and suppressed assignments is not directly
  111.      determinable.
  112.                                 May 15, 1985                                 3