Tuesday, July 14, 2009

C++ code corrector?

could any one reccomend me a program so that i can correct mistakes from my c++ codes ?? thnx

C++ code corrector?
The best program you can use is a debugger. A debugger is a small program or function that is within or comes along with your c++ compiler. This program check for errors (called syntax error) in your code and alert you. To get the best out of a debugger, I suggest that you use an IDE (Integrated Development Environment) when coding. Example of a good C++ IDE will be visual studio express for c++, Dev-C++(www.bloodshed.net). The reason I suggest using an IDE is beyond the scope of this answer but just keep in mind that you will be prompted for any mistake and the IDE will highlight the mistake in your code. This will make your C++ code "clean" but not totally safe from errors as there may arise run time errors.


No comments:

Post a Comment