-

Difference between revisions of "Functions HI-TECH C FPRINTF"

From HI-TECH C for CP/M Fan WIKI(EN)
Jump to: navigation, search
(Created page with "<strong>FPRINTF</strong> ==SYNOPSIS== #include <stdio.h> fprintf(FILE * stream, char * fmt, ...); vfprintf(FILE * stream, va_list va_arg); ==DESCRIPTION== <strong>Fpr...")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<strong>FPRINTF</strong>
+
<strong>FPRINTF,VFPRINTF</strong>
 
==SYNOPSIS==
 
==SYNOPSIS==
  
Line 18: Line 18:
  
 
printf, fscanf, sscanf
 
printf, fscanf, sscanf
 +
 +
==NOTE from editor==
 +
VFPRINTF is lacked in original manual text as a function name and corrected in this WIKI.

Latest revision as of 02:00, 1 August 2017

FPRINTF,VFPRINTF

SYNOPSIS

#include  <stdio.h>

fprintf(FILE * stream, char * fmt, ...);
vfprintf(FILE * stream, va_list va_arg);


DESCRIPTION

Fprintf() performs formatted printing on the specified stream. Refer to printf() for the details of the available formats. Vfprintf() is similar to fprintf() but takes a variable argument list pointer rather than a list of arguments. See the description of va_start() for more information on variable argument lists.

SEE ALSO

printf, fscanf, sscanf

NOTE from editor

VFPRINTF is lacked in original manual text as a function name and corrected in this WIKI.