The format character in C specifies the data type and output format Summary of the output item, and the Data Type output format

Source: Internet
Author: User

The format character in C specifies the data type and output format Summary of the output item, and the Data Type output format

Conversion specifier
% A (% A) floating point number, hexadecimal number, and p-(P-) Notation (C99)
% C characters
% D signed decimal integer
% F floating point number (including float and doulbe)
% E (% E) floating point number index output [e-(E-) Note]
% G (% G) floating point number does not show meaningless zero "0"
% I signed decimal INTEGER (same as % d)
% U unsigned decimal integer
% O octal integer e.g. 0123
% X (% X) hexadecimal integer <? Xml: namespace prefix = st1/> () e.g. 0x1234
% P pointer
% S string
% "%"

 

Format String (Format)
[Flag] [minimum output width] [. Precision] [length] Type
"%-Md": Left alignment. If the m ratio is small, it is output as needed.
"% M. ns": output m-bit. Take the string (from left) n-bit, left fill space, when n> m or m is omitted, m = n
E.g. "% 7.2 s" input CHINA
Output "CH"
"% M. nf": Output floating point number. m indicates the width, and n indicates the right digit of the decimal point.
E.g. "%" Enter 3852.99.
3853.0 output
Length: h short integer, l long integer

The complete format of printf format control:
%-. N l or h characters
The following describes the composition formats:
① %: Indicates the starting symbol of the format description, which is indispensable.
②-: "Yes" indicates the left-aligned output. If it is omitted, "yes" indicates the right-aligned output.
③ 0: if there is 0, it indicates that the specified vacant space is filled with 0. If it is omitted, it indicates that the specified vacant space is not filled.
④ M. n: m indicates the domain width, that is, the number of characters that the corresponding output item occupies on the output device. N indicates the precision. It is used to describe the decimal places of the output real number. If n is specified, the implicit precision is n = 6 digits.
⑤ L or h: l refers to long type for integer type and double type for real type. H is used to modify the integer format characters to the short type.

 

Format characters
The format character is used to specify the data type and output format of the output item.
① D format: Used to output a decimal integer. It has the following usage:
% D: output according to the actual length of integer data.
% Md: m is the width of the specified output field. If the number of digits of the data is smaller than m, spaces are filled on the left side. If the number is greater than m, the data is output based on the actual number of digits.
% Ld: Output long integer data.
② O Format: outputs integers in the unsigned octal form. You can output long integers in "% lo" format. You can also specify the field width to output in "% mo" format.
Example:
Main ()
{Int a =-1;
Printf ("% d, % o", a, );
}
Running result:-1, 177777
Program parsing: the value of-1 is (1111111111111111) 2 in the inner storage unit (stored in the form of a supplemental code), and the value of-1 is (177777) 8.
③ X format: returns an integer in the unsigned hexadecimal format. You can output long integers in "% lx" format. You can also specify the field width to output in "% mx" format.
④ U format: returns an integer in unsigned decimal format. You can output long integers in "% lu" format. You can also specify the field width to output in "% mu" format.
⑤ C format: Output a character.
6 s format: Used to output a string. Usage
% S: for example, printf ("% s", "CHINA") Outputs A "CHINA" string (excluding double quotation marks ).
% Ms: The output string occupies the m column. If the length of the string is greater than m, the limit of m is exceeded and all strings are output. If the string length is less than m, spaces are left.
%-Ms: if the length of a string is less than m, the string is left-aligned and right-filled with spaces within the m column range.
% M. ns: the output occupies the m column, but only takes n characters from the left of the string. The n characters are output to the right of the m column with spaces left.
%-M. ns: the meaning of m and n is the same as above. n characters are output to the left of the m column range, and spaces are filled on the right. If n> m, the n value is automatically taken, that is, the normal output of n characters is guaranteed.
7. f format: Used to output real numbers (including Single and Double Precision) in decimal form. It has the following usage:
% F: the width is not specified. All integers are output and 6 decimal places are output.
% M. nf: the output occupies m columns, where n decimal places exist. For example, if the value width is less than m, spaces are filled at the left end.
%-M. nf: the output occupies n columns, where n decimal places exist. For example, if the value width is less than m, fill in spaces at the right end.
⑧ Eformat: returns the real number in exponential form. The following formats are available:
% E: The number part (also called the ending number) Outputs 6 decimal places, and the index part occupies 5 or 4 digits.
The characters % m. ne and %-m. ne: m, n, and "-" are the same as those before. Here, n refers to the decimal point of the numeric part of the data, and m indicates the width of the entire output data.
⑨ G format: automatically selects a short type of output in the f format or the E format, and does not output meaningless zero.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.