【正文】
The C Programming Language C is a highlevel programming language developed by Dennis Ritchie and Brian Kernighan at Bell Labs in the mid1970s. Although originally designed as a systems programming language, C has proved to be a powerful and flexible language that can be used for a variety of applications, from business programs to engineering. C is a particularly popular language for personal puter programmers because it is relatively smallit requires less memory than other languages. The first major program written in C was the UNIX operating system。 and for many years, C was considered to be inextricably linked with UNIX. Now, however, C is am important language independent of UNIX. Although it is a highlevel languages, C is much closer to assembly language than are most other highlevel languages. This closeness to the underlying machine language allows C programmers to write very efficient code. The howlevel nature of C, however, can make the language difficult to use for some types of applications. Now let’ s take an overview of the C programming language, both historically and technically and technically. As a generalpurpose programming language, C has been closely associated with UNIX system where it was developed, since both the system and most of the applications that run on it are written in C. The language , however, is not tied to any one operating system or machine。 and although it has been called a “ system programming language” because it is useful for writing pilers and operating systems, it has been used equally well to write major programs in various fields. Many of the important ideas stem from the language BCPL, developed by Martin Richards. The influence of BCPL on C proceeded indirectly through the language B, which was written by Ken Tompson in 1970 for the first UNIX system on the DECPDP7. BCPL and B are “ typeless” languages. By contrast, C provides a variety of data types. The fundamental types are characters, and integers and floating point numbers of several sizes. Additionally, there is a hierarchy of derived data types created with pointers, arrays, structures, and unions. Expressions are formed from operands。 any expression, including an assignment or a function call, can be a statement. Pointers provide for machineindependent address arithmetic. C provides the fundamental controlflow constructions required for wellstructured programs: statement grouping, decision making (ifelse) , selecting one of a set of possible cases (switch), looping with the termination test at the top (while, for) or at the bottom (do), and early loop exit (break). Functions may return values of basic type, structures, unions, or pointers. Any function may be called recursiv