6. Compiling and linking

Now switch back to the C/C++ perspective by choosing its icon in the right side of the toolbar:
Switching perspectives

You need to select compilation with debug information. To do this, choose Run or Debug from the launch bar:
Choosing Debug

When you created the project, the IDE also created a makefile. Now to create a binary, click the Build button (Build icon) or right-click the project name and select Build Project. The compiler and linker will now do their work.

You will find the compiler output in the C-Build output in the Console view, including any errors (you shouldn't see any errors, but we've added one in the example below):
Compile errors in the Console view

If errors occur during compiling, you will find the Problems view more useful, because it displays the output of the compiler in an interpreted and more readable fashion than the Console view:
Compile errors in the Problems view

The Editor view also gives you information about an error if you leave the pointer over it:
Compile errors in the Editor view

After the build operation, your binaries will be displayed in the Binaries folder. Physically, they're located in the build directory for your project. The IDE automatically created the corresponding makefiles.
Binaries