Forum: Java Jan 19th, 2007 |
| Replies: 32 Views: 6,164 I can imagine plenty of people responding with the immediate suggestion of eclipse, however eclipse also uses a decent amout of recources probably due to the fact it IS programmed in java (I... |
Forum: C++ Dec 25th, 2006 |
| Replies: 35 Views: 5,994 I don't disagree with you....C is a much more powerful and useful language, however I just feel like someone starting with C is going in a little over their head at first, as near everything (useful)... |
Forum: C++ Dec 25th, 2006 |
| Replies: 35 Views: 5,994 Welcome! To be honest.....if this is going to be your first TRUE programming language (HTML and web-dev aside), I might start with Visual Basic or C#. This is just a personal recommendation but I... |
Forum: C Nov 14th, 2006 |
| Replies: 4 Views: 2,524 /**************************
* cgilib.h *
***************************/
typedef char *string;
typedef struct
{
string fieldName;
string value;
}oneField;
struct element { |
Forum: C# Nov 10th, 2006 |
| Replies: 3 Views: 2,651 Well, "string" is actually an object type of the System.String class. So if you omit "using System" from your program, this will not compile:
String a = "Hello World";
Whereas this line... |
Forum: C++ Nov 8th, 2006 |
| Replies: 14 Views: 2,660 i believe your missing a close bracket "}" from your initial if block |