•  Back 
  •  Libraries 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  Help 
  •  Show info about hypertext 
  •  View a new file 
Topic       : Pure C Library Documentation
Author      : John Kormylo
Version     : LIB.HYP 1.0
Subject     : Documentation/Pure C Library
Nodes       : 1309
Index Size  : 32068
HCP-Version : 3
Compiled on : Atari
@charset    : atarist
@lang       : en
@default    : 
@help       : Help
@options    : +g -i -s +x +z -t4
@width      : 75
View Ref-File[ vprintf ]

#include <stdio.h>

int vprintf( const char *format, va_list arg );

  <format> is a string containing text and '%' sequences for
           converting variables into text.
           See printf/scanf Formats.
  <arg> is a variable argument list (see va_list) for the
        variables to be formatted.


Function performs a formatted write to stdout.
It returns the number of characters written or EOF if an error occurs.

See also Standard I/O and Formatting.