Crossware

Table of Contents        Previous topic       Next topic       

C LIBRARY FUNCTIONS->Detailed Descriptions->vprintf()

Summary

#include <stdio.h>
#include <stdarg.h>

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


Parameters

    
formatFormat control string
argptrPointer to a list of arguments to be converted and printed

Description

This function converts, formats and writes the arguments pointed by argptr to its arguments to the standard output (stdout).

The format control string has the same form and function as the format argument of the printf() function.

Return Value

The function returns the number of characters printed.