Penguin

Differences between version 18 and previous revision of C.

Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History

Newer page: version 18 Last edited on Wednesday, February 11, 2004 1:23:50 pm by AristotlePagaltzis Revert
Older page: version 17 Last edited on Friday, January 23, 2004 2:05:50 am by StuartYeates Revert
@@ -15,9 +15,9 @@
 [C] has inspired an entire class of languages, including [C++] which some say fixes many problems with [C], while others debate is just a horrible mess. [Java] has decended from [C++] as a portable, clean [object oriented|ObjectOrientation] language, itself in turn the inspiration for MicrosoftCorporation's new language called [CSharp]. 
  
 See the [C History|http://cm.bell-labs.com/cm/cs/who/dmr/chist.html]. 
  
-I recommend you learn [C], and use it for writing OperatingSystems , and understanding how things actually are implemented, but then code in some other ProgrammingLanguage if you are going to write applications, especially networking programs. 
+I recommend you learn [C], and use it for writing [OperatingSystem]s , and understanding how things actually are implemented, but then code in some other ProgrammingLanguage if you are going to write applications, especially networking programs. 
  
 ---- 
 The following example is a program to approximate the value of pi (Compile it with __gcc -traditional-cpp -o pi pi.c__). If you want a better approximation, increase the program's source code area :).