[try Beta version]
Not logged in

 
which program do i do the basics on 'hello world'?

Dec 19, 2008 at 10:02pm
I am trying to learn the basic tutorial of 'hello world' but i don't know which program to do it under.

Do i do it under notepad or something?

Dec 19, 2008 at 10:07pm
You need a text editor (such as Notepad) and a compiler.
The most easy way is to get an IDE which will be making most of the work for you.
Some are avaiable for free, try looking at http://www.google.com/search?hl=en&q=c%2B%2B+ide+download&aq=0&oq=
Last edited on Dec 19, 2008 at 10:08pm
Dec 19, 2008 at 10:14pm
do you have to download it?

Dec 19, 2008 at 10:32pm
Dev-Cpp is a free compiler you can use; go to http://www.bloodshed.net/devcpp.html and download then you install and all and you have a compiler that works great!
Last edited on Dec 19, 2008 at 10:33pm
Dec 19, 2008 at 10:37pm
Is there a compiler that supports windows vista and also ubuntu linux?
Dec 19, 2008 at 11:54pm
Dev-C++ is an integrated development environment (IDE) that uses MinGW as its compiler. Since Dev-C++ hasn't been active since 2005, its version of MinGW is already obsolete, so it's advisable to either update it version, or use a different IDE altogether.

A program compiled by MinGW will work in any version of Windows since Windows 98.
If what you mean is a compiler that compiles for both Vista and Linux, then no. You'll need to cross-compile for that. Note, however, that MinGW is a port to Windows of GCC, so a program that compiles in it will very likely compile in GCC.
Last edited on Dec 19, 2008 at 11:54pm
Topic archived. No new replies allowed.