Skip to main content

Eclipse CDT (C/C++ Development Tooling) C/c++ Editor

1 min read Updated June 30, 2026
Share:
On this page (4sections)

C/C++ Editor or IDE Downloads


Eclipse CDT IDE Features:

The CDT Project provides a fully functional C and C++ Integrated Development Environment based on the Eclipse platform. Features include: support for project creation and managed build for various toolchains, standard make build, source navigation, various source knowledge tools, such as type hierarchy, call graph, include browser, macro definition browser, code editor with syntax highlighting, folding and hyperlink navigation, source code refactoring and code generation, visual debugging tools, including memory, registers, and disassembly viewers.

Eclipse CDT IDE Home and Downloads

http://www.eclipse.org/cdt/

http://www.eclipse.org/cdt/downloads.php

Frequently Asked Questions

What does this C++ program do?
It is a C++ example program that demonstrates Eclipse CDT (C/C++ Development Tooling) C/c++ Editor, including the complete source code and the expected sample output.
How do I compile and run this C++ program?
Save the code in a `.cpp` file, compile it with `g++ filename.cpp -o program`, then run it with `./program` (or `program.exe` on Windows).
What concepts does this example use?
This example uses core C++ syntax, illustrating a common pattern in C++ programming.

Related Tutorials

Search tutorials