Recently started programming with dev-c++ under window, feeling dec-c++ is a pretty good C + + compiler. Http://www.duote.com/soft/9830.html. Here are some tips to use:
1. Several shortcut keys:
In the tools, shortcut key settings can set their own accustomed to use the shortcut keys, the following gives several common shortcuts, are the system default.
"CTRL + N" creates a new source code; "Ctrl+o" opens a project or document; "Ctrl+s" is saved;
"CTRL+F9" compile program; "CTRL+F10" Run; "F9" compiles and runs;
"F8" debug Program; "Ctrl+w" View variable; "CTRL+ALT+F2" Terminates the program;
"Ctrl +." COMMENT; "ctrl+m" uncomment;
2. Code completion function:
The dev-c++ has a code-incomplete function, which can prompt all possible instructions on the program to improve programming efficiency.
Open method: Tools, editor options check allow code completion in the code completion panel under Browse class, and set the delay time. After you set the delay time, the editor will automatically activate the code completion function.
In addition, press CTRL + SPACEBAR in the editor to activate the code completion feature at any time.
Also: When you are unsure about the scope of a pair of parentheses, you can press "ctrl+shift+ space"
Some tips for using dev-c++ shortcuts