Standard Library Functions in C

adplus-dvertising
printf() Function
Previous Home Next

Description

The C library function, This printf()function can be used to output any combination of numerical values, single characters and strings. Its purpose is to display data. Printf() move data from thee computer's memory to the standard output device.

Declaration

Following is the declaration for printf() function.

int printf(const char *format, ...);

Parameters

Format - C string that contains the text to be written to stdout.It can optionally contain embedded format specifiers that are replaced by the values specified in subsequent additional arguments and formatted as requested.

A format specifier follows this prototype:

%[flags][width][.precision][length]specifier 

Where the specifier character at the end is the most significant component, since it defines the type and the interpretation of its corresponding argument:

specifier Output Example
d or iSigned decimal integer392
uUnsigned decimal integer7235
oUnsigned octal610
xUnsigned hexadecimal integer7fa
XUnsigned hexadecimal integer (uppercase)7FA
fDecimal floating point, lowercase392.65
FDecimal floating point, uppercase392.65
eScientific notation (mantissa/exponent), lowercase3.9265e+2
EScientific notation (mantissa/exponent), uppercase3.9265E+2
gUse the shortest representation: %e or %f392.65
GUse the shortest representation: %E or %F392.65
aHexadecimal floating point, lowercase-0xc.90fep-2
AHexadecimal floating point, uppercase-0XC.90FEP-2
cCharactera
sString of characterssample
pPointer addressb8000000
nNothing printed.The corresponding argument must be a pointer to a signed int. The number of characters written so far is stored in the pointed location.
%A % followed by another % character will write a single % to the stream%

The format specifier can also contain sub-specifiers: flags, width, .precision and modifiers (in that order), which are optional and follow these specifications:

flags description
-Left-justify within the given field width; Right justification is the default (see width sub-specifier).
+Forces to preceed the result with a plus or minus sign (+ or -) even for positive numbers. By default, only negative numbers are preceded with a - sign.
(space) If no sign is going to be written, a blank space is inserted before the value.
#Used with o, x or X specifiers the value is preceeded with 0, 0x or 0X respectively for values different than zero. Used with a, A, e, E, f, F, g or G it forces the written output to contain a decimal point even if no more digits follow. By default, if no digits follow, no decimal point is written.
0Left-pads the number with zeroes (0) instead of spaces when padding is specified (see width sub-specifier).
width Description
(number)Minimum number of characters to be printed. If the value to be printed is shorter than this number, the result is padded with blank spaces. The value is not truncated even if the result is larger.
*The width is not specified in the format string, but as an additional integer value argument preceding the argument that has to be formatted.
.precision Description
.numberFor integer specifiers (d, i, o, u, x, X) - precision specifies the minimum number of digits to be written. If the value to be written is shorter than this number, the result is padded with leading zeros. The value is not truncated even if the result is longer. A precision of 0 means that no character is written for the value 0. For e, E and f specifiers: this is the number of digits to be printed after the decimal point. For g and G specifiers: This is the maximum number of significant digits to be printed. For s: this is the maximum number of characters to be printed. By default all characters are printed until the ending null character is encountered. For c type: it has no effect. When no precision is specified, the default is 1. If the period is specified without an explicit value for precision, 0 is assumed.
.*The precision is not specified in the format string, but as an additional integer value argument preceding the argument that has to be formatted. length Description
length Description
hThe argument is interpreted as a short int or unsigned short int (only applies to integer specifiers: i, d, o, u, x and X).
lThe argument is interpreted as a long int or unsigned long int for integer specifiers (i, d, o, u, x and X), and as a wide character or wide character string for specifiers c and s.

additional arguments - Format string refers to a string that contains formatting information, and arg1, arg2. are argument that represent the individual output data items. The control string can include a flag, Which affects the apperance of the output. The flag must be placed immediately afterr percent sign(%).

Return Value

The printf function returns the number of characters that was written. If an error occurs, it will return a negative value.

Example

#include<stdio.h>
#include<conio.h>
main()
{
	int i=123;
	float x=12.0,y=-3.3;
	int p=1234,q=01777,r=0xa08c;
	printf(":%6d %7.0f %10.1e:\n\n",i,x,y);
	printf(":%-6d %-7.0f %-10.1e:\n\n",i,x,y);
	printf(":%8u %8o %8x\n\n",p,q,r);
	printf(":%-8u %-8o %-8x\n\n",p,q,r);
}

Output

:  123  12  -3.3e+00;
:  123  12  -3.3e+00;
:  1234  1777  a08c;
:  1234  1777  a08c; 
Previous Home Next