(?Part 1 ??C overview ?The program we write consists of two primary aspects ?1 The ensemble of algorithms?? That is, the organization of commands into programs to manage a particular problem? 2. The ensemble of data?? Operating on data to provide a management solution for the problem? Throughout the short history of computer development, these two primary aspects of algorithm and data have always persisted in constant development and evolution. It is the connection between them that is the so-called programming method programmingparadigm? A problem in procedural programming can be directly modeled by a set of algorithms. For example, the material lending/registration checkout/checkin system in public libraries is played out by a series of processes. The two primary processes are the borrowing and registration of materials. The data is stored independently and we can either access the data at a certain point or pass the data to the process so that it can access the data Fortran C and Pascal are three well-known procedural languages ??C also supports procedural programming to design separate processes such as check_in() check_out() over_due() fine() and so on are all called functions. The third part will focus on the review of C on procedural programs............
cprimer.txt)