home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / os / msdos / programm / 8890 < prev    next >
Encoding:
Text File  |  1992-08-30  |  1.3 KB  |  35 lines

  1. Newsgroups: comp.os.msdos.programmer
  2. Path: sparky!uunet!kithrup!stanford.edu!ames!sun-barr!cs.utexas.edu!usc!rpi!batcomputer!munnari.oz.au!cs.mu.OZ.AU!munta.cs.mu.OZ.AU!fjh
  3. From: fjh@munta.cs.mu.OZ.AU (Fergus James HENDERSON)
  4. Subject: Re: The smallest TSR contest
  5. Message-ID: <9224402.5239@mulga.cs.mu.OZ.AU>
  6. Sender: news@cs.mu.OZ.AU
  7. Organization: Computer Science, University of Melbourne, Australia
  8. References: <BtHsIt.6F4@ireq.hydro.qc.ca> <AJcrvcgSo6@rkb.riga.lv> <BtrpHu.FoB@ireq.hydro.qc.ca>
  9. Date: Sun, 30 Aug 1992 16:36:55 GMT
  10. Lines: 23
  11.  
  12. beaurega@ireq.hydro.qc.ca (Denis Beauregard) writes:
  13.  
  14. [...]
  15. >One advantage of Pascal over C is that the Pascal is
  16. >embedded in the code and C is not (C must call standard library while
  17. >standard Pascal can expend more directly some statements like the
  18. >print (Fortran do the same).  
  19.  
  20. This is not true.
  21.  
  22. A C compiler may well expand calls to standard functions, like
  23.     printf("%s\n",s);
  24. with equivalent but more efficient code, eg.
  25.     puts(s);
  26. Indeed such compilers do exist, although they are not common.
  27.  
  28. See the recent discussion on comp.lang.fortran.
  29.  
  30. -- 
  31. Fergus Henderson             fjh@munta.cs.mu.OZ.AU      
  32. This .signature virus is a self-referential statement that is true - but 
  33. you will only be able to consistently believe it if you copy it to your own
  34. .signature file!
  35.