PRINTF.3
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:7k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. PRINTF(3)                 Minix Programmer's Manual                  PRINTF(3)
  2. NAME
  3.      printf,  fprintf,  sprintf,  snprintf,   vprintf,   vfprintf,   vsprintf,
  4.      vsnprintf - formatted output conversion
  5. SYNOPSIS
  6.      #include <sys/types.h>
  7.      #include <stdio.h>
  8.      #include <stdarg.h>
  9.      int printf(const char *format [, arg] ...);
  10.      int fprintf(FILE *stream, const char *format [, arg] ...);
  11.      int sprintf(char *s, const char *format [, arg] ...);
  12.      int snprintf(char *s, size_t n, const char *format [, arg] ...);
  13.      int vprintf(const char *format, va_list args);
  14.      int vfprintf(FILE *stream, const char *format, va_list args);
  15.      int vsprintf(char *s, const char *format, va_list args);
  16.      int vsnprintf(char *s, size_t n, const char *format, va_list args);
  17. DESCRIPTION
  18.      Printf places output on  the  standard  output  stream  stdout.   Fprintf
  19.      places output on the named output stream.  Sprintf places `output' in the
  20.      string s, followed by the character `'.  Snprintf (Minix-vmd  only)  is
  21.      like  sprintf  except  that  no more than n-1 characters are written to s
  22.      followed by a `'.
  23.      The v*printf functions can be used to make functions like the first  four
  24.      by using the stdarg(3) method to process the argument.
  25.      Each of these functions converts, formats, and prints its arguments after
  26.      the  first  under control of the first argument.  The first argument is a
  27.      character string which contains two types of objects:  plain  characters,
  28.      which   are   simply   copied   to  the  output  stream,  and  conversion
  29.      specifications, each of which causes conversion and printing of the  next
  30.      successive arg.
  31.      Each conversion specification is introduced  by  the  character  %.   The
  32.      remainder of the conversion specification includes in the following order
  33.      o    Zero or more of following flags:
  34.      o    a `#' character specifying that the value should be converted to  an
  35.           ``alternate form''.  For c, d, s, and u conversions, this option has
  36.           no effect.  For o  conversions,  the  precision  of  the  number  is
  37.           increased  to  force  the  first character of the output string to a
  38.           zero.  For x(X) conversion, a non-zero result has the string  0x(0X)
  39.           prepended to it.  For e, E, f, g, and G conversions, the result will
  40.           always contain a decimal point, even if no digits follow  the  point
  41.           (normally,  a  decimal  point  only  appears in the results of those
  42.           conversions if a digit follows the decimal  point).   For  g  and  G
  43.           conversions,  trailing zeros are not removed from the result as they
  44.                                 June 5, 1986                                 1
  45. PRINTF(3)                 Minix Programmer's Manual                  PRINTF(3)
  46.           would otherwise be.
  47.      o    a minus sign `-' which specifies left adjustment  of  the  converted
  48.           value in the indicated field;
  49.      o    a `+' character specifying that there should always be a sign placed
  50.           before the number when using signed conversions.
  51.      o    a space specifying that a blank should be  left  before  a  positive
  52.           number  during a signed conversion.  A `+' overrides a space if both
  53.           are used.
  54.      o    an optional digit string specifying a field width; if the  converted
  55.           value  has  fewer  characters than the field width it will be blank-
  56.           padded on the left (or right, if the left-adjustment  indicator  has
  57.           been  given)  to  make up the field width; if the field width begins
  58.           with a zero, zero-padding will be done instead of blank-padding;
  59.      o    an optional period `.'  which serves to  separate  the  field  width
  60.           from the next digit string;
  61.      o    an optional digit string specifying a precision which specifies  the
  62.           number  of  digits  to appear after the decimal point, for e- and f-
  63.           conversion, or the maximum number of characters to be printed from a
  64.           string;
  65.      o    the  character  l  specifying  that  a  following  d,  o,  x,  or  u
  66.           corresponds to a long integer arg.
  67.      o    a character which indicates the type of conversion to be applied.
  68.      A field width or precision may be `*' instead of a digit string.  In this
  69.      case an integer arg supplies the field width or precision.
  70.      The conversion characters and their meanings are
  71.      dox  The integer arg is  converted  to  decimal,  octal,  or  hexadecimal
  72.           notation respectively.
  73.      X    Like x, but use upper case instead of lower case.
  74.      f    The float or double arg is converted  to  decimal  notation  in  the
  75.           style  `[-]ddd.ddd'  where the number of d's after the decimal point
  76.           is equal to the precision specification for the  argument.   If  the
  77.           precision  is  missing,  6  digits  are  given;  if the precision is
  78.           explicitly 0, no digits and no decimal point are printed.
  79.      e    The float or double arg is converted  in  the  style  `[-]d.ddde+dd'
  80.           where  there  is  one  digit before the decimal point and the number
  81.           after is equal to the precision specification for the argument; when
  82.                                 June 5, 1986                                 2
  83. PRINTF(3)                 Minix Programmer's Manual                  PRINTF(3)
  84.           the precision is missing, 6 digits are produced.
  85.      g    The float or double arg is printed in style d, in  style  f,  or  in
  86.           style e, whichever gives full precision in minimum space.
  87.      c    The character arg is printed.
  88.      s    Arg is taken to be a string (character pointer) and characters  from
  89.           the string are printed until a null character or until the number of
  90.           characters indicated by  the  precision  specification  is  reached;
  91.           however if the precision is 0 or missing all characters up to a null
  92.           are printed.
  93.      u    The unsigned integer arg is converted to decimal and printed.
  94.      %    Print a `%'; no argument is converted.
  95.      In no case does a non-existent or small field width cause truncation of a
  96.      field;  padding takes place only if the specified field width exceeds the
  97.      actual width.  Characters generated by printf are printed by putc(3).
  98.      Examples
  99.      To print a date and time in the  form  `Sunday,  July  3,  10:02',  where
  100.      weekday and month are pointers to null-terminated strings:
  101.           printf("%s, %s %d, %02d:%02d", weekday, month, day, hour, min);
  102.      To print pi to 5 decimals:
  103.           printf("pi = %.5f", 4*atan(1.0));
  104. SEE ALSO
  105.      putc(3), scanf(3), ecvt(3), stdarg(3).
  106.                                 June 5, 1986                                 3