_printf - formatted output conversion
#include "main.h" int _printf(const char format , ...);
The _printf() function produce output according to a format as described below. Also, write output to stdout, the standard output stream.
The _printf() function write the output under the control of a format string that specifies how subsequent arguments (or arguments accessed via the variable-length argument facilities of stdarg(3) are converted for output.
The format string is a character string, beginning and ending inits initial shift state, if any. The format string is composed of zero or more directives: ordinary characters (not %), which are copied unchanged to the output stream; and conversion specifications, each of which results in fetching zero or more subsequent arguments. Each conversion specification is introduced by the character % and ends with conversion specifier.
A character that specifies the type of conversion to be applied. The conversion specifiers and their meaning are:
- d, i: The int argument should be signed decimal notation, and the resulting number is written.
- c: The int argument is converted to a char, and the resulting character is written.
- s: The const char * argument is expected to be a pointer to an array of character type (pointer to a string). Characters from the array are written up to (but not including) a terminating null byte ('\0').
- %: A '%' is written. No argument is converted. The complete conversion specification is '%%'.
This function gets a char parameter and writes the parameter to the stdout, the standard output stream.
This function gets a variadic arguments list, traverse the list, prints each character of char type and returns the length of the character.
This function gets a variadic arguments list, traverse the list, prints each string and returns the length of the string.
This function gets a variadic arguments list, traverse the list, prints each number of int type and returns the length of the integer.
This function gets a format to be printed and a variadic arguments list, next to check if the format is valid or invalid and according with the verification the resulting output is written to the standard output stream and returns the format length.
This function gets a format valid to be printed and a variadic arguments list to find the format in the list and selects the appropriate function to execute and writes the format to the standard output stream and returns the length of the valid format.
This function gets the previous format of the current format, the actual format and the current count of printed characters. Next, the invalid format is written to the standard output stream and returns the length of the invalid format.
This function gets an integer and prints the last digit of the number as recursion is applied.
Gets a type and checks if the passed parameter is present in a structure of valid conversion specifiers. Next, returns if the parameter is valid or invalid.
Upon successful return, the _printf() function return the number of characters printed (excluding the null byte used to end output to strings).
If an output error is encountered, a negative value is returned.
_printf() is written and maintained by By Abdulrazaq & Ruksaar Adam