08-29-2010, 06:36 PM
Pages: 1 2
08-29-2010, 06:41 PM
i use visual C++ 6, It's not free but you can download it and just fill the cdkey box with 1's and it will work.
08-30-2010, 01:31 PM
Dev c++
08-30-2010, 06:13 PM
tried dev c++ but dosen't compile maybe its my code
but nothing happens somethings flashes on my screen yer BTW i'm very new to all this
i also go run and compile on Dev c++
Code:
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
cout << "i'm a C++ program";
return 0;
}
but nothing happens somethings flashes on my screen yer BTW i'm very new to all this
i also go run and compile on Dev c++
08-30-2010, 06:29 PM
If you click run, and it says didn't compile, then there is an error, but if not, then you were successful. If it says not compiled, then look at the box on the bottom, and it will show you any errors, and one which line the error was made on.
09-01-2010, 03:31 PM
Don't use Dev-c++, it's crap.
Instead, use MingW: http://www.mingw.org/
If you need an environment on which to compile with, I suggest Code::Blocks: http://www.codeblocks.org/
There is an option to install MingW with the Code::Blocks installation; if you do this, I would suggest you to install every compiler available.
Instead, use MingW: http://www.mingw.org/
If you need an environment on which to compile with, I suggest Code::Blocks: http://www.codeblocks.org/
There is an option to install MingW with the Code::Blocks installation; if you do this, I would suggest you to install every compiler available.
09-05-2010, 12:11 PM
visual c++ 2010 by microsoft is a favourite of mine.
due to the 32/64 full support.
due to the 32/64 full support.
09-21-2010, 09:55 PM
Visual C++ Express Editions are free.
09-24-2010, 04:54 AM
(08-30-2010, 06:13 PM)Marda Wrote: [ -> ]tried dev c++ but dosen't compile maybe its my code
Code:#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
cout << "i'm a C++ program";
return 0;
}
but nothing happens somethings flashes on my screen yer BTW i'm very new to all this
i also go run and compile on Dev c++
Dev C++ works fine.
Its your code
Looking at your code you have no stop in it.. so it runs though then ends. Any compiler would make it do that.
Put cin.get() or something like that before return 0;
That will end it
Dev c++
09-26-2010, 06:15 AM
VisualC++ of DevC++ are both great options.
Pages: 1 2