Retrospect of "Thinking in C++"
Today, I've finished the first step in the "retrospecting" job-- finishing the first three chapters of "Thinking in C++".
After reading the book, I tried some simple programs. My C++ programming tool is VS.Net. The problems are: (1) I do not know how to compile and run the C++ files. (2) I do not know how to pass parameters of main function using VS.Net.
For the first problem, I knew that one of the correct steps is: 1) New->Project->VC++ Project->Empty Project; 2) New C++ files in the project. Only when a project is set up, the C++ files can be compiled and run.
For the second problem, I knew one of the correct way to send parameters is: 1)Right click the project-> Properties 2) Find Command Parameters and add the parameters.