IT training c pocket reference c syntax and fundamentals prinz kirch prinz 2002 11 30 1

98 83 0
IT training c pocket reference  c syntax and fundamentals prinz  kirch prinz 2002 11 30 1

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

Chapter C Pocket Reference Section 1.1 Introduction Section 1.2 Fundamentals Section 1.3 Basic Types Section 1.4 Constants Section 1.5 Expressions and Operators Section 1.6 Type Conversions Section 1.7 Statements Section 1.8 Declarations Section 1.9 Variables Section 1.10 Derived Types Section 1.11 Functions Section 1.12 Linkage of Identifiers Section 1.13 Preprocessing Directives Section 1.14 Standard Library Section 1.15 Standard Header Files Section 1.16 Input and Output Section 1.17 Numerical Limits and Number Classification Section 1.18 Mathematical Functions Section 1.19 Character Classification and Case Mapping Section 1.20 String Handling Section 1.21 Searching and Sorting Section 1.22 Memory Block Management Section 1.23 Dynamic Memory Management Section 1.24 Time and Date Section 1.25 Process Control Section 1.26 Internationalization 1.1 Introduction The programming language C was developed in the 1970s by Dennis Ritchie at Bell Labs (Murray Hill, New Jersey) in the process of implementing the Unix operating system on a DEC PDP-11 computer C has its origins in the typeless programming language BCPL (Basic Combined Programming Language, developed by M Richards) and in B (developed by K Thompson) In 1978, Brian Kernighan and Dennis Ritchie produced the first publicly available description of C, now known as the K&R standard C is a highly portable language oriented towards the architecture of today's computers The actual language itself is relatively small and contains few hardware-specific elements It includes no input/output statements or memory management techniques, for example Functions to address these tasks are available in the extensive C standard library C's design has significant advantages: · Source code is highly portable · Machine code is efficient · C compilers are available for all current systems The first part of this pocket reference describes the C language, and the second part is devoted to the C standard library The description of C is based on the ANSI X3.159 standard This standard corresponds to the international standard ISO/IEC 9899, which was adopted by the International Organization for Standardization in 1990, then amended in 1995 and 1999 The ISO/IEC 9899 standard can be ordered from the ANSI web site; see http://ansi.org/public/std_info.html The 1995 standard is supported by all common C compilers today The new extensions defined in the 1999 release (called "ANSI C99" for short) are not yet implemented in many C compilers, and are therefore specially labeled in this book New types, functions, and macros introduced in ANSI C99 are indicated by an asterisk in parentheses (*) 1.1.1 Font Conventions The following typographic conventions are used in this book: Italic Used to introduce new terms, and to indicate filenames Constant width Used for C program code as well as for functions and directives Constant width italic Indicates replaceable items within code syntax Constant width bold Used to highlight code passages for special attention 1.2 Fundamentals A C program consists of individual building blocks called functions, which can invoke one another Each function performs a certain task Ready-made functions are available in the standard library; other functions are written by the programmer as necessary A special function name is main( ): this designates the first function invoked when a program starts All other functions are subroutines 1.2.1 C Program Structure Figure 1-1 illustrates the structure of a C program The program shown consists of the functions main() and showPage(), and prints the beginning of a text file to be specified on the command line when the program is started Figure 1-1 A C program The statements that make up the functions, together with the necessary declarations and preprocessing directives, form the source code of a C program For small programs, the source code is written in a single source file Larger C programs consist of several source files, which can be edited and compiled separately Each such source file contains functions that belong to a logical unit, such as functions for output to a terminal, for example Information that is needed in several source files, such as declarations, is placed in header files These can then be included in each source file via the #include directive Source files have names ending in c; header files have names ending in h A source file together with the header files included in it is called a translation unit There is no prescribed order in which functions must be defined The function showPage() in Figure 1-1 could also be placed before the function main() A function cannot be defined within another function, however The compiler processes each source file in sequence and decomposes its contents into tokens, such as function names and operators Tokens can be separated by one or more whitespace characters, such as space, tab, or newline characters Thus only the order of tokens in the file matters The layout of the source code—line breaks and indentation, for example—is unimportant The preprocessing directives are an exception to this rule, however These directives are commands to be executed by the preprocessor before the actual program is compiled, and each one occupies a line to itself, beginning with a hash mark (#) Comments are any strings enclosed either between /* and */, or between // and the end of the line In the preliminary phases of translation, before any object code is generated, each comment is replaced by one space Then the preprocessing directives are executed 1.2.2 Character Sets ANSI C defines two character sets The first is the source character set, which is the set of characters that may be used in a source file The second is the execution character set, which consists of all the characters that are interpreted during the execution of the program, such as the characters in a string constant Each of these character sets contains a basic character set, which includes the following: · The 52 upper- and lower-case letters of the Latin alphabet: · A B C D E F G H I J K L M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z · The ten decimal digits (where the value of each character after is one greater than the previous digit): · The following 29 graphic characters: · ! < · " = # > % ? & [ ' \ ( ] ) ^ * _ + { , | } / : ; ~ The five whitespace characters: space, horizontal tab, vertical tab, newline, form feed In addition, the basic execution character set contains the following: · The null character \0, which terminates a character string · The control characters represented by simple escape sequences, shown in Table 1-1, for controlling output devices such as terminals or printers Table 1-1 The standard escape sequences Escape sequence Action ondisplay device \a \b \f \n Alert (beep) Backspace \r Carriage return \t Horizontal tab Escape sequence Action ondisplay device \' \" \? \\ \o \oo \ooo(o = octal Form feed Newline digit) \xh (h = string of hex digits) \v The character ' The character " The character ? The character \ The character with this octal code The character with this hexadecimal code Vertical tab Any other characters, depending on the given compiler, can be used in comments, strings, and character constants These may include the dollar sign or diacriticals, for example However, the use of such characters may affect portability The set of all usable characters is called the extended character set, which is always a superset of the basic character set Certain languages use characters that require more than one byte These multibyte characters may be included in the extended character set Furthermore, ANSI C99 provides the integer type wchar_t (wide character type), which is large enough to represent any character in the extended character set The modern Unicode character encoding is often used, which extends the standard ASCII code to represent some 35,000 characters from 24 countries C99 also introduces trigraph sequences These sequences, shown in Table 1-2, can be used to input graphic characters that are not available on all keyboards The sequence ??!, for example, can be entered to represent the "pipe" character | Table 1-2 The trigraph sequences Trigraph Meaning ??= # ??( [ ??/ \ ??) ] ??' ^ ??< { ??! | ??> } ??~ 1.2.3 Identifiers Identifiers are names of variables, functions, macros, types, etc Identifiers are subject to the following formative rules: · An identifier consists of a sequence of letters ( A to Z, a to z), digits (0 to 9), and underscores ( _) · The first character of an identifier must not be a digit · Identifiers are case-sensitive · There is no restriction on the length of an identifier However, only the first 31 characters are generally significant Keywords are reserved and must not be used as identifiers Following is a list of keywords: auto break case char const continue default double else enum extern float for goto if inline(*) int long register restrict(*) return short signed sizeof static struct switch typedef union unsigned void volatile while _Bool(*) _Complex(*) _Imaginary(*) External names—that is, identifiers of externally linked functions and variables—may be subject to other restrictions, depending on the linker: in portable C programs, external names should be chosen so that only the first eight characters are significant, even if the linker is not case-sensitive Some examples of identifiers are: Valid: a, DM, dm, FLOAT, _var1, topOfWindow Invalid: do, 586_cpu, zähler, nl-flag, US_$ 1.2.4 Categories and Scope of Identifiers Each identifier belongs to exactly one of the following four categories: · Label names · The tags of structures, unions, and enumerations These are identifiers that follow one of the keywords struct, union, or enum (see Section 1.10) · Names of structure or union members Each structure or union type has a separate name space for its members · All other identifiers, called ordinary identifiers Identifiers of different categories may be identical For example, a label name may also be used as a function name Such re-use occurs most often with structures: the same string can be used to identify a structure type, one of its members, and a variable; for example: struct person {char *person; /* */} person; The same names can also be used for members of different structures Each identifier in the source code has a scope The scope is that portion of the program in which the identifier can be used The four possible scopes are: Function prototype Identifiers in the list of parameter declarations of a function prototype (not a function definition) have function prototype scope Because these identifiers have no meaning outside the prototype itself, they are little more than comments Function Only label names have function scope Their use is limited to the function block in which the label is defined Label names must also be unique within the function The goto statement causes a jump to a labelled statement within the same function Block Identifiers declared in a block that are not labels have block scope The parameters in a function definition also have block scope Block scope begins with the declaration of the identifier and ends with the closing brace (}) of the block File Identifiers declared outside all blocks and parameter lists have file scope File scope begins with the declaration of the identifier and extends to the end of the source file An identifier that is not a label name is not necessarily visible throughout its scope If an identifier with the same category as an existing identifier is declared in a nested block, for example, the outer declaration is temporarily hidden The outer declaration becomes visible again when the scope of the inner declaration ends 1.3 Basic Types The type of a variable determines how much space it occupies in storage and how the bit pattern stored is interpreted Similarly, the type of a function determines how its return value is to be interpreted Types can be either predefined or derived The predefined types in C are the basic types and the type void The basic types consist of the integer types and the floating types 1.3.1 Integer Types There are five signed integer types: signed char, short int (or short), int, long int (or long), and long long int(*) (or long long(*)) For each of these types there is a corresponding unsigned integer type with the same storage size The unsigned type is designated by the prefix unsigned in the type specifier, as in unsigned int The types char, signed char, and unsigned char are formally different Depending on the compiler settings, however, char is equivalent either to signed char or to unsigned char The prefix signed has no meaning for the types short, int, long, and long long(*), however, since they are always considered to be signed Thus short and signed short specify the same type The storage size of the integer types is not defined; however, their width is ranked in the following order: char

Ngày đăng: 05/11/2019, 13:10

Mục lục

  • C Pocket Reference

    • Introduction

    • Fundamentals

    • Basic Types

    • Constants

    • Expressions and Operators

    • Type Conversions

    • Statements

    • Declarations

    • Variables

    • Derived Types

    • Functions

    • Linkage of Identifiers

    • Preprocessing Directives

    • Standard Library

    • Standard Header Files

    • Input and Output

    • Numerical Limits and Number Classification

    • Mathematical Functions

    • Character Classification and Case Mapping

    • String Handling

    • Searching and Sorting

    • Memory Block Management

    • Dynamic Memory Management

    • Time and Date

    • Process Control

    • Internationalization

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan