Difference between revisions of "C++ syntax"

From Tux
Jump to: navigation, search
(Created page with "This page is a reference for C++ syntax that corresponds to topic coverage for CS 135 and CS 202. The topics are arranged to mirror the chronological order that they are cove...")
 
 
(7 intermediate revisions by the same user not shown)
Line 2: Line 2:
  
 
==CS 135 topics==
 
==CS 135 topics==
* [[Hello world]]
+
* [[Hello world]]  
* [[Comments]]
+
* [[Comments]]
 +
* [[Basic data types]]
 +
* [[Variables, expressions, and operators]]
  
 
==CS 202 topics==
 
==CS 202 topics==
 +
* Topics that may have received little coverage in CS 135 but are covered in chapters 1-9
 +
** [[switch and case]]
 +
** [[continue and break]]
 +
** [[assert]]
 +
** [[Ternary operator]]
 +
** [[Function overloading]]
 +
** [[Default function parameters]]
 +
** [[Static variables]]
 +
** [[enum]]
 +
** [[typedef]]
 +
** [[C-strings]]
 +
** [[Multidimensional arrays]]
 +
** [[istringstream]] (this is not in the textbook)
 +
** [[Command line arguments]] (this is not in the textbook)

Latest revision as of 15:53, 3 February 2018

This page is a reference for C++ syntax that corresponds to topic coverage for CS 135 and CS 202. The topics are arranged to mirror the chronological order that they are covered in for those two courses, but note that each instructor may cover topics in a different order, not cover topics listed here, or cover topics that are not listed here.

CS 135 topics

CS 202 topics