C is a general-purpose programming language, and is used for writing programs in many different domains, such as operating systems, numerical computing, graphical applications, etc. It is a small language, with just 32 keywords. It provides “high-level” structured programming constructs such as statement grouping, decision making, and looping, as well as “low level” capabilities such as the ability to manipulate bytes and addresses.
- C provides no operations to deal directly with composite objects such as lists or arrays.
- There are no memory management facilities apart from static definition and stack-allocation of local variables.
- And there are no input/output facilities, such as for printing to the screen or writing to a file.
- For example, the standard function printf() prints text to the screen (or, more precisely, to standard output—which is typically the screen). The standard library will be used extensively throughout this text; it is important to avoid writing your own code when a correct and portable implementation already exists.
No comments:
Post a Comment