Nick Heiner
Nick Heiner

Reputation: 122412

Eclipse: Create Hello World app in C

This seems super basic, but I'm having trouble finding documentation online to explain it.

I have the Eclipse IDE for C/C++ 3.5.1. How can I create a simple Hello World program in C? (I have also downloaded cygwin.) Many tutorials online make reference to "Managed" and "Simple" types of projects, but I can't find that anywhere. Was that removed in 3.5.1?

Upvotes: 2

Views: 1950

Answers (1)

Greg Hewgill
Greg Hewgill

Reputation: 992757

Is there a specific reason you want to use Eclipse? For a beginner, probably the easiest way to get started with C on Windows is to use the free Microsoft Visual C++ Express Edition. It's a full IDE with built in compiler and debugger, and can do everything you might need to do for learning C.

Although you have Eclipse and Cygwin right now, neither of those components actually include a compiler unless you specifically download that too. With that environment, you have to manually put the pieces together before you can compile and run your code.

Upvotes: 3

Related Questions