This disk accompanies R. Johnsonbaugh and M. Kalin, Applications Programming in ANSI C, 3rd edition, Prentice Hall, Englewood Cliffs, N.J., 1996. FILE DESCRIPTION SECTION ---- ----------- ------- kinder.c a first C program 1.1 convert.c converts length units 1.2 taxes1.c computes taxes-- 1.6 input from keyboard taxes2.c computes taxes-- 1.10 input from file stat.c statistical measures 2.5 bargrph1.c prints a bar graph 2.8 bargraph.in input file for bargrph1.c 2.8 average.c averages positive numbers 3.1 in input chk_sort.c checks if standard input of 3.1 ints is sorted primes.c prints primes less than a 3.2 given integer calendar.c prints a calendar for a year 3.6 bargrph2.c prints a bar graph 4.1 grade.c assigns a letter grade 4.1 resistor.c computes resistance 4.4 dice.c simulated dice game 4.7 main.h used by dice.c 4.7 roll.h used by dice.c 4.7 fact.c computes factorial 4.8 tower.c tower of Hanoi 4.8 walk_nr.c robot walking 4.8 (nonrecursive) walk_r.c robot walking 4.8 (recursive) tromino.c recursive tiling 4.9 max.c finds maximum of a list of ints 4.10 cars1.c car sales program 5.3 line_len.c formats text to a given line 5.5 cars2.c revision of car sales program 5.6 of Sec 5.3--passes an array to a function length.c computes length of string 5.8 matmult.c matrix multiplication 5.10 phone.c looks up phone numbers 5.11 students.dat used by phone and newphone 5.11 perc.c forest fire percolation 5.12 reverse.c reverses a string 6.5 host.c code for parallel computing 6.6 child.c code for parallel computing 6.6 timer.c times sorting functions 6.10 page.c breaks text into pages 7.2 calc.c interactive calculator 7.5 io.c input/output for calculator 7.5 defines.h header file for calculattor 7.5 sched.c finds an optimal schedule 7.9 sort_str.c sorts strings; used by sched.c 7.9 sched.in input file 7.9 size.c finds size of a file 8.3 random.c random access file 8.8 films.c classifies films 9.2 films.dat input for films.c 9.2 sales.h header file for sales.c 9.7 sales.c sales reporting program 9.7 sales.rpt sample report for sales program 9.7 elephnt1.c creates a linked list 10.2 elephnt2.c also creates a linked list 10.2 line_ed.c line editor 10.3 queue1.c implements a queue using an 10.4 array queue2.c implements a queue using a 10.4 linked list stack1.c implements a stack using an 10.4 array stack2.c implements a stack using a 10.4 linked list infix.c converts infix to postfix 10.5 bfs_adj.c breadth 1st search 10.8 w/ adj matrix bfs_link.c breadth 1st search 10.8 w/ adj lists astar.c finds distances between cities 10.9 distance.dat input for astar.c 10.9 names.dat input for astar.c 10.9 assert.c shows the assert macro 11.1 jump.c exception-handling example 11.2 vonkoch.c draws the von Koch snowflake 11.4 ship.cpp C++ example 11.5