home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / elem-c.zip / C.DOC < prev    next >
Text File  |  1985-05-18  |  1KB  |  32 lines

  1. The following list of files are some very basic "C" source 
  2. code files and compiled and linked programs.  They are only being 
  3. furnished so that novice "C" programers can see some basics and play
  4. with some simple code.  The programs have been written to use only
  5. the STDIO library and should work on anything.
  6.  
  7. AMORTIZ1.C,2.C and 3.C are modules of AMORTIZE.EXE.  They must be
  8. compiled seperately and then linked.  AMORTIZE.EXE will print on the
  9. screen, an amortization allowing you to give the payment, or it will
  10. figure the payment for you.
  11.  
  12. MENU.C, PYMT.C and INTEREST.C are identical to AMORTIZ1,2 and 3 plus
  13. they will write the results to a disk file named AMORTIZE.TXT.  The
  14. finished program is AMORTPRIN.EXE.
  15.  
  16. PRINT.C and PRINTAB.C will both read an ASCII file and print it on
  17. the printer.  The difference between them is PRINTAB will strip
  18. TAB characters and replace them with SPACES.  The name of the file
  19. you wish to print is furnished to the program on the same command
  20. line that invokes the program.
  21. Example:
  22. A>    PRINT FILENAME.EXT <cr>
  23. A>  PRINTAB FILENAME.EXT <cr>
  24.  
  25. BACKUP will read a file and copy it to a file with the same name,
  26. but with the extension of .BAK .
  27.  
  28. Remember, these programs are being furnished to give interested
  29. novice "C" programers something to play and learn with.
  30.  
  31. HAVE FUN!        Paul J. Sumberg