home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / C / R_LA4_01.ZIP / READ.ME < prev    next >
Encoding:
Text File  |  1987-12-30  |  1.4 KB  |  23 lines

  1.    The programs in this arc file were typed from "Microsoft C Programming
  2. for the IBM" by Robert Lafore. These files are from chapters 8 thur 10 and 
  3. most of the programs listed in these chapters are here. Two of the programs
  4. appear in earlier chapters, PLOT.C in chapter 6 and MOVE.C in chapter 7.
  5. They all compile and run with Quick C in the command line mode. I never tried 
  6. them in the Quick C environment. My compile command is:
  7.         C>qcl /Zi /AM /c filename.c
  8. and my link command is:
  9.         C>link /CO filename;
  10. The /Zi switch is to enable debugging with the CODEVIEW Ver 2.0 debugger, 
  11. likewise for the /CO switch. These switches (all), I believe ARE case 
  12. sensitive. The /AM forces the compiler to compile with the medium memory model
  13. (also for debugging) as the default for the qcl command line mode is small.
  14. The /c switch tells the compiler to put the OBJ file on disk.
  15.    I hope to have another ARC file with programs from chapter 12 (chapter 11
  16. involves color which I don't have) thru the end of the book in a couple of 
  17. weeks that I can upload. There is an interesting looking communications 
  18. program in chapter 13 (Serial Ports & Communications) that looks to have all 
  19. you ever needed to know about the serial ports and modems.
  20.    This book looks like the best C book I have seen. The explanations, 
  21. especially on pointers, are clear and the examples are chosen well.
  22.  
  23.