ComradeBadger
Tank
- Joined
- May 15, 2003
- Messages
- 1,723
- Reaction score
- 2
Any good development enviroments that are Open Source? I'd rather like to stop my cycle of pirating Microsoft Visual C++ .. heh
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: this_feature_currently_requires_accessing_site_using_safari
EvNTHriZen said:
ray_MAN said:Borland C++BuilderX. Excellent compiler for you. Get it here:
http://www.borland.com/products/downloads/download_cbuilderx.html
DevC++ is only OK because when you code you have to add in the extra line of unnecassary code to make it run right.
cout << "I want PIE" << endl;
cout << "I want PIE\n";
#include <iostream.h>
[b]#include <stdlib.h>[/b]
int main()
{
cout<<"Hello World"[b]<<endl;[/b]
[b]system("pause");[/b]
return 0;
}
#include <iostream.h>
int main()
{
cout<<"Hello World";
return 0;
}
#include <iostream>
using namespace std;
int main()
{
//variables
int value1 = 5, value2 = 2;
int * myPointer;
int * pointer2;
int anArray [] = {1,2,2,3,4,6,7,810};
int Num;
bool Correct = false;
//code
myPointer = &value1;
*myPointer = 10;
pointer2 = &value2;
cout << "Value1 == " << value1 << " pointer == " << pointer2;
cout << "\n Geuss a number in the Array: ";
while(!Correct)
{
cin >> Num;
for (value1 = 7; value1>=0; value1--)
{
cout << "In for loop ";
if (anArray[value1] == Num)
{
cout << "\n!!!It's true!!!!\n ";
Correct = true;
break;
}
cout << "In for loop after IF ";
}
cout << "In while loop after for loop ";
}
cout << "\nEnd of program";
return 0;
}
Just something to consider, first of all. Dev-C++ is a nice free compiler/IDE however there are a few things that you'll generally need to know. First off it's not good for developing windows applications. Secondly, it will not work with DirectX at all. Microsoft's .lib and the GCC's .a import libraries are incompatable. Secondly, it's not as good as optimizing code as the MSVC.mrBadger said:Any good development enviroments that are Open Source? I'd rather like to stop my cycle of pirating Microsoft Visual C++ .. heh
well whenever I get the 2,500$ I'll probably buy it too, but by then Whidby (code name for the new .NET release) will be out, if not another releasemrBadger said:Fallout2 ... it's just to tide me over till my cheques cash and I can buy .NET 2003
They made a DX9 devpack? That's interesting, I knew they had a DX8 one but then again my Dev-C++ strangely ceased working several months ago even after repeated reinstalls, I have to wonder if the reimp violates some licensing terms MS puts out though.Bert said:You can use directx with dev-cpp. Simply download the mingw utilities here and use reimp to convert the directx .lib files to .a files. Or simply use the update utility to download the dx9 DevPak.