/* CH13A.C */ /* Reads programming marks for a class of 15 students, and */ /* displays student number and mark for those who have passed */ #include main () { /* Description ......... Prepare files for processing Write headings Initialise total mark (= 0) FOR each student in turn Read mark into array Accumulate total mark Compute pass mark FOR each student in turn If passed Write student number and mark Close files */ }