This is a continue to the first part in this post Emacs - Setting up environment for C/C++ Programming - Part 1. This time, I’ll demonstrate some more tips to help make your Emacs a powerful IDE for C/C++ programming
Syntax Checking on the fly
Flymake is a package which comes with Emacs 23 and above to help Emacs perform syntax checking as you type. It uses an external program (usually the compiler) to determine the errors.
Since it’s a part of Emacs 23, you don’t have to install in order to use it, just add this to your .emacs
(require 'flymake)

