Forum: C++ Jan 11th, 2007 |
| Replies: 3 Views: 2,553 Shouldn't you be using strcmp instead of == for comparing strings? Or am I just as baffled as you? :eek: |
Forum: C++ Jan 1st, 2007 |
| Replies: 2 Views: 1,299 This (http://www.geocities.com/learnprogramming123/Clesson8Beginner.htm) is a decent basic tutorial on loops in the C language. You will find them similar to the ones in C++, C#, or Java, as C is a... |
Forum: C++ Dec 25th, 2006 |
| Replies: 35 Views: 5,971 Hehe...LISP, now thats something that will scare a kid away.... I think we can both agree LISP should NOT be the first language learned. :eek: But learning C and moving to LISP is not a bad... |
Forum: C++ Dec 25th, 2006 |
| Replies: 35 Views: 5,971 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: 5 Views: 1,892 Can't you just double click each combobox and edit the code for when each combobox is changed? It might provide you with a different event by default, not sure, but I think there is one for combobox... |
Forum: C++ Dec 25th, 2006 |
| Replies: 35 Views: 5,971 Totally agree...but when I'm just starting, I WANT the language to provide methods/functions so that I can get the jist of whats going on before I decide to play jesus. After you learn a JAVA or even... |
Forum: C++ Dec 25th, 2006 |
| Replies: 35 Views: 5,971 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++ Dec 20th, 2006 |
| Replies: 6 Views: 11,734 You are setting an integer variable to "", which is a string, thus a char*. You could probably use ' ' but why initialize it to anything? |
Forum: C++ Nov 24th, 2006 |
| Replies: 8 Views: 3,197 I've been recently reading the forums a lot, seeing people throw around the phrase "pass-by-reference" in normal C. As far as I've been taught, C only provides pass-by-value. Now.....the developers... |
Forum: C++ Nov 14th, 2006 |
| Replies: 6 Views: 1,536 Learn something about the language and how it works before you post code like that here and ask for help. How are we to have a clue what is going on in your main program? Where are your function... |
Forum: C++ Nov 10th, 2006 |
| Replies: 4 Views: 1,201 ummmm.....can you clean that up so its possible to read? |
Forum: C++ Nov 8th, 2006 |
| Replies: 14 Views: 2,646 i believe your missing a close bracket "}" from your initial if block |
Forum: C++ Nov 6th, 2006 |
| Replies: 4 Views: 1,501 if a and b are integers.....
quotient = a / b;
remainder = a % b; |
Forum: C++ Oct 23rd, 2006 |
| Replies: 6 Views: 1,368 How about creating an array of points, then using a loop to traverse each element of the array? |
Forum: C++ Oct 22nd, 2006 |
| Replies: 4 Views: 1,496 confusing the compiler? reducing cases will always simplify runtime. |
Forum: C++ Oct 21st, 2006 |
| Replies: 3 Views: 2,468 When you bought the software did it come with any sort of readme or manual? I would find it hard to believe a company like Borland would have no documentation on how to use their software. As for... |