- Function
 Formatted output to the console.
- Header
 - Declaration
 
int __fastcall__ vcprintf (const char* format, va_list ap);- Description
 The arguments specified as a
va_listare converted to text where necessary and formatted according to the format string given. The resulting string is output to the console.vcprintfsupports the same format specifiers asvprintf.- Limits
 
- Like all other
 coniooutput functions,vcprintfdistinguishes between\rand\n.- The function is only available as fastcall function, so it may only be used in presence of a prototype.
 - Availability
 cc65
- See also
 - Example
 None.