Forum: C++ Mar 10th, 2005 |
| Replies: 11 Views: 22,994 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++ Sep 28th, 2004 |
| Replies: 7 Views: 12,670 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,813 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,699 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: C++ Sep 16th, 2004 |
| Replies: 6 Views: 4,617 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,203 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 2nd, 2004 |
| Replies: 11 Views: 9,446 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... |