Creating computer software

Ryder401

Member
Aug 18, 2005
177
0
0
I am really interested in creating some basic software of my own, what is the best format (such as C++) to start looking into??
 

xtknight

Elite Member
Oct 15, 2004
12,974
0
71
http://www.cplusplus.com/ has great tutorials for C++.

You can start by getting a compiler, a program that converts your code to an executable.
I think http://msdn.microsoft.com/visualc/ is a good starting point. Visual C++ 2005 Express. While not optimized to the fullest, it's free and has an awesome GUI. There is also the Visual Studio 2003 C++ Toolkit, also free, which is fully optimized, but comes with a command-line only interface. Attached is practically the most basic form of a program in C++.

For anything Windows-related, the MSDN Library (http://msdn.microsoft.com/) is an indispensable resource.
 

beyonddc

Senior member
May 17, 2001
910
0
76
Originally posted by: Ryder401
Will this be all I need to get started?

How much better would this be???

As a beginner, the express version should be more than enough.
After you feel comfortable with it, and you would like to switch to a different IDE, then go ahead.
 

Sureshot324

Diamond Member
Feb 4, 2003
3,370
0
71
It depends what you want to do. I would start with Java. It is easier than C++ and it is free. You can get the sdk including complier Here and Eclipse is a good IDE (integrated developer environment) for it.

You can get a C++ plugin for eclipse and get a free C++ compiler for it, so I don't think there's much point in spending money on visual studio.
 

mugs

Lifer
Apr 29, 2003
48,920
46
91
I would start with C#, not C++. Similar syntax, but it's easier to do graphical stuff I think.