-
Notifications
You must be signed in to change notification settings - Fork 76
C++ guide
echown edited this page Aug 9, 2012
·
3 revisions
You should take CS 101 in the near future to get some programming experience, and then go to the next step. Alternately, there are dozens of tutorials and books out there (and in the lab) that can help you get a grasp of C++.
Go to the cplusplus language tutorial to learn about the C++ syntax and how it is different/similar to Java. Then try reading through Man.cpp and see if it makes sense to you.
We try to abide to the K&R standard more or less with one VERY IMPORTANT exception:
We use 4 spaces instead of a tab
That means when you press Tab in your code, it should insert 4 spaces instead of an actual Tab character. So make sure your favorite editor is set to insert spaces instead of tabs!