Skip to content

Commit e087a14

Browse files
Update intro.md
1 parent d8a8aa1 commit e087a14

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

book/languages/c/intro.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Introduction
22

3-
**C** is a general-purpose, imperative programming language, supporting structured programming, lexical variable scope and
3+
**C** is a general-purpose, imperative programming language, supporting structured programming, lexical variable scope and
44
recursion, with static, weakly enforced type system. C provides constructs that map to machine code, so it has found use in
55
applications that had been coded in assembly language before, including operating systems, as well as various software for
66
computers.
@@ -9,7 +9,7 @@ C is an imperative procedural language. It was designed to be compiled using sim
99
to replace a few tasks of assembly, and provide higher level language constructs that map efficiently to machine instructions,
1010
that require minimal run-time support, to increase usability of language.
1111

12-
Despite its low-level capabilities, the language has wide cross-platform programming capabilities. A C89 program
13-
that is written with portability in mind can be compiled for a very wide variety of platforms and operating systems with
12+
Despite its low-level capabilities, the language has wide cross-platform programming capabilities. A C89 program
13+
that is written with portability in mind can be compiled for a very wide variety of platforms and operating systems with
1414
few or no changes to its source code. The language has become available on a very wide range of platforms, from embedded
1515
systems to supercomputers.

0 commit comments

Comments
 (0)