![]() |
![]() |
|
|
![]() |
![]() |
HP C/HP-UX Reference Manual: Version A.06.05 > Chapter 2 Program
Organization ![]() Constants |
|
There are four types of constants in C: Every constant has two properties: value and type. For example, the constant 15 has value 15 and type int. HP C supports three forms of integer constants:
An integer constant is a simple number like 12. It is not an integer variable (like x or y) or an integer expression. The data type assigned to an integer constant is the first in which it will fit from the list on the right for the constant declaration on the left: Table 2-3 Convention Summary
Integer constants may not contain any punctuation such as commas or periods. A floating-point constant is any number that contains a decimal point and/or exponent sign for scientific notation. The number may be followed by an f or F, to signify that it is of type float, or by an l or L, to signify that it is of type long double. If the number does not have a suffix, it is of type double even if it can be accurately represented in four bytes. If the magnitude of a floating-point constant is too great or too small to be represented in a double, the C compiler will substitute a value that can be represented. This substitute value is not always predictable. You may precede a floating-point constant with the unary plus or minus operator to make its value positive or negative. Scientific notation is a useful shorthand for writing lengthy floating-point values. In scientific notation, a value consists of two parts: a number called the mantissa followed by a power of 10 called the characteristic (or exponent). The letter e or E, standing for exponent, is used to separate the two parts. The floating-point constant 3e2, for instance, is interpreted as 3*(102), or 300. Likewise, the value -2.5e-4 is interpreted as -2.5/(104), or -0.00025. Here are some examples of legal and illegal floating-point constants. Table 2-5 Floating-Point Constants
A character constant is any printable character or legal escape sequence enclosed in single quotes. A character constant can begin with the letter L to indicate that it is a wide character constant; this notation is ordinarily used for characters in an extended character set. In HP C, an ordinary character constant occupies one byte of storage; a wide character constant occupies the rightmost byte of a 4-byte integer. The value of a character constant is the integer ISO Latin-1 value of the character. For example, the value of the constant x is 120. HP C supports several escape sequences: Table 2-6 Character Escape Codes
The escape sequences for octal and hexadecimal numbers are commonly used to represent characters. For example, if ISO Latin-1 representations are being used, the letter a may be written as \141 or \x61 and Z as \132 or \x5A. This syntax is most frequently used to represent the null character as \0. This is exactly equivalent to the numeric constant zero (0). When you use the octal format, you do not need to include the zero prefix as you would for a normal octal constant. Each character in an ordinary character constant takes up one byte of storage; therefore, you can store up to a 4-byte character constant in a 32-bit integer and up to a 2-byte character constant in a 16-bit integer. For example, the following assignments are legal:
The variable si is assigned the value of e and f, where each character takes up 8 bits of the 16-bit value. The HP C compiler places the last character in the rightmost (least significant) byte. Therefore, the constant ef will have a hexadecimal value of 6566. Since the order in which bytes are assigned is machine dependent, other machines may reverse the order, assigning f to the most significant byte. In that case, the resulting value would be 6665. For maximum portability, do not use multi-character constants. Use character arrays instead. A string constant is any series of printable characters or escape characters enclosed in double quotes. The compiler automatically appends a null character (\0) to the end of the string so that the size of the array is one greater than the number of characters in the string. For example, "A short string" becomes an array with 15 elements: Like a character constant, a string constant can begin with the letter L to indicate that it is a string constant in an extended character set. To span a string constant over more than one line, use the backslash character (\), also called the continuation character. The following, for instance, is legal: strcpy(string,"This is a very long string that requires more \ Note that if you indent the second line, the spaces will be part of the string. The compiler concatenates adjacent string constants. Therefore, you can also span a string constant over one line as shown: strcpy(string, "This is a very long string that requires more " When you indent the second line with this method, the spaces are not part of the string. The type of a string is array of char, and strings obey the same conversion rules as other arrays. Except when a string appears as the operand of sizeof or as an initializer, it is converted to a pointer to the first element of the string. Note also that the null string, "" is legal, and contains a single trailing null character. |
![]() |
||
![]() |
![]() |
![]() |
|||||||||||||
|