Path: utzoo!utgpu!jarvis.csri.toronto.edu!clyde.concordia.ca!uunet!zephyr.ens.tek.com!tekig5!justinb From: justinb@tekig5.PEN.TEK.COM (Justin Russell Bendich) Newsgroups: alt.religion.computers Subject: Re: Pascal versus C Message-ID: <5395@tekig5.PEN.TEK.COM> Date: 16 Jan 90 21:14:26 GMT References: <5487@udccvax1.acs.udel.EDU> <252@usblues.UUCP> <1990Jan16.173034.25686@murdoch.acc.Virginia.EDU> Reply-To: justinb@tekig5.PEN.TEK.COM (Justin Russell Bendich) Distribution: na Organization: Tektronix, Inc., Beaverton, OR. Lines: 18 Some reasons for preferring C to Pascal: 1) Berkeley Pascal does not provide an interface to kernel calls. This makes unix programming extremely difficult. 2) Pascal has piss-poor string handling capability. So does C (intrinsically), but the necessary routines are standard. 3) You can get away with everything in C. Some reasons for preferring Pascal to C: 1) It has set types. Yes, i know you CAN implement these in C, but you have to. Furthermore, they'll never come as naturally as in Pascal. 2) You'll never have a problem like a=1/*intptr opening up a comment. 3) You can get away with everything in C.