Forum: C++ Mar 10th, 2005 |
| Replies: 11 Views: 23,018 Hello,
I would recommend Bloodshed Dev-C++ (http://www.bloodshed.net/devcpp.html) for C++ programming.
If you want to compile C code, I would suggest using a C compiler such as GCC. I'm... |
Forum: C Oct 14th, 2004 |
| Replies: 17 Views: 4,558 Greetings,
If I understand correctly, you want to find which of the totals are shortest. Like from minimum to maximum, e.g. A is less than B so B is greater; B is greater than C so C is less than... |
Forum: Geeks' Lounge Oct 11th, 2004 |
| Replies: 6 Views: 2,251 Q. Do I use this system?
A. There are some advantages to using this system.
Advantages
Is the person trustworthy
Do they often give useful information
Are they respected in this community |
Forum: C++ Sep 28th, 2004 |
| Replies: 7 Views: 12,691 Ah,
Glad to be of assistance.
> i dont think it recognized #include <iostream.h>
I've heard this from alot of programmers before. Though there is a difference between <iostream.h> and... |
Forum: C++ Sep 23rd, 2004 |
| Replies: 6 Views: 3,820 Greetings chound,
C provides typedef, a facility for creating new data type names. It makes your name a synonym of the defined data-type:
typedef int Number; The type Number can be used in... |
Forum: C++ Sep 21st, 2004 |
| Replies: 36 Views: 11,707 Greetings,
The if-else statement is normally used to express decisions, where the else part is usually optional. Since an if simply tests the numeric value of an expression, coding shortcuts are... |
Forum: Game Development Sep 20th, 2004 |
| Replies: 2 Views: 8,611 Greetings Smarkles,
I put together a small package of the OpenGL DLLs and Header/Library files. You can download them here (http://www.bluedevstudios.net/?page=downloads). You should find a few... |
Forum: C Sep 18th, 2004 |
| Replies: 13 Views: 361,890 Greetings,
This process is not hard since the default libraries included a function to do this. It's called itoa().
» char *itoa(int value, char *buffer, int radix);
Converts an integer value... |
Forum: C++ Sep 16th, 2004 |
| Replies: 6 Views: 4,619 Greetings Darakuli,
RPG [Role Playing Games] isn't an easy task to undertake, as you may know. It's usually recommended to take a standard game programming course, and to know the C or C++... |
Forum: C++ Sep 16th, 2004 |
| Replies: 12 Views: 6,206 I would recommend getline() instead of cin >>:
cin.getline(UsrName, 10, '\n');
Here's more information about getline() (http://www.cplusplus.com/ref/iostream/istream/getline.html) and its... |
Forum: C Sep 14th, 2004 |
| Replies: 8 Views: 5,658 Greetings,
I did see a few errors that evidently caught my attention.
Firstly, on line 6 of your posted code you have the following:
int side1 = 0;
Though 4 lines later, [or line 10], you... |
Forum: C++ Sep 2nd, 2004 |
| Replies: 11 Views: 9,448 Hello fellow programmers,
This is a tutorial about using pointers in the C environment. Please, don’t hit the back button; pointers aren’t as hard as you think. In fact without pointers, most of... |