home *** CD-ROM | disk | FTP | other *** search
- The following list of files are some very basic "C" source
- code files and compiled and linked programs. They are only being
- furnished so that novice "C" programers can see some basics and play
- with some simple code. The programs have been written to use only
- the STDIO library and should work on anything.
-
- AMORTIZ1.C,2.C and 3.C are modules of AMORTIZE.EXE. They must be
- compiled seperately and then linked. AMORTIZE.EXE will print on the
- screen, an amortization allowing you to give the payment, or it will
- figure the payment for you.
-
- MENU.C, PYMT.C and INTEREST.C are identical to AMORTIZ1,2 and 3 plus
- they will write the results to a disk file named AMORTIZE.TXT. The
- finished program is AMORTPRIN.EXE.
-
- PRINT.C and PRINTAB.C will both read an ASCII file and print it on
- the printer. The difference between them is PRINTAB will strip
- TAB characters and replace them with SPACES. The name of the file
- you wish to print is furnished to the program on the same command
- line that invokes the program.
- Example:
- A> PRINT FILENAME.EXT <cr>
- A> PRINTAB FILENAME.EXT <cr>
-
- BACKUP will read a file and copy it to a file with the same name,
- but with the extension of .BAK .
-
- Remember, these programs are being furnished to give interested
- novice "C" programers something to play and learn with.
-
- HAVE FUN! Paul J. Sumberg