Forum: C++ May 27th, 2007 |
| Replies: 7 Views: 1,063 From my personal experience, learn everything you think you can on your own before investing in a college that specializes in software development. I went to Fullsail in the Game Design/Development... |
Forum: C++ May 22nd, 2007 |
| Replies: 14 Views: 3,543 don't say i didn't warn you if you get a job in the real world and ask them if you can use bloodshed...
btw, you don't want to learn about multithreading yet. it's not going solve your intial... |
Forum: C++ May 22nd, 2007 |
| Replies: 24 Views: 11,352 people sometimes prefer int main as it has a return type. and return types are good practice for detecting good/bad returns from a function.
i read some places that it's only possible to pass... |
Forum: C++ May 20th, 2007 |
| Replies: 14 Views: 3,543 he wants to know how to update objects on a screen... lets not complicate him with things such as multi threading. |
Forum: C++ May 20th, 2007 |
| Replies: 14 Views: 3,543 he's not talking about threading im sure. as he wants to know how to update objects on the screen at the same time, which would be updating a game, not threading, so refer to my previous post Brent.tc |
Forum: C++ May 19th, 2007 |
| Replies: 14 Views: 3,543 I've been sent here by the gods of compilers with this message.
http://msdn.microsoft.com/vstudio/express/downloads/
You will now "fit in" with the rest.
But in all honesty, I really... |
Forum: C++ May 15th, 2007 |
| Replies: 13 Views: 5,281 Do you have to allow negative input?
Edit:
BTW: You're getting the bad output because your app is dividing by zero most likely. |
Forum: C++ May 15th, 2007 |
| Replies: 17 Views: 6,413 which measures the circumference of the triangle... |
Forum: C++ May 15th, 2007 |
| Replies: 6 Views: 1,669 why is accept() not prototyped? |
Forum: C++ May 14th, 2007 |
| Replies: 17 Views: 6,413 Suprisingly, it's the largest circle that could be drawn inside of a triangle which is the circumference of a triangle. It'd dumb but i've seen it before. |
Forum: C++ May 13th, 2007 |
| Replies: 17 Views: 6,413 what errors are you getting if any?
what output are you getting if any?
what's the freakin problem? |
Forum: C++ May 13th, 2007 |
| Replies: 6 Views: 8,160 press :
CTRL + SHIFT + B to build it
CTRL + F5 to run it in release
F5 to run in debug
These are all in the drop downs on the IDE. |
Forum: C++ May 5th, 2007 |
| Replies: 49 Views: 5,190 1. This is creating a pointer to a char, writting "Literal String" at that address in memory
2. This is creating a char in memory, and assigning the value of 's' to it. |
Forum: C++ Apr 19th, 2007 |
| Replies: 23 Views: 2,134 i converted his code to c++ 2005 express and works for me. |
Forum: C++ Apr 19th, 2007 |
| Replies: 23 Views: 2,134 you tell us lol... does it work? |
Forum: C++ Apr 19th, 2007 |
| Replies: 23 Views: 2,134 i took his code and obviously put the srandom to srand and the random to rand... works fine |
Forum: C++ Apr 19th, 2007 |
| Replies: 4 Views: 1,421 Don't know if it helps, but I just wrote something very very simple in C# 2005 express, you may want to consider switching over to it of you want. If not maybe someone else can help you out in C++.
... |
Forum: C++ Apr 19th, 2007 |
| Replies: 2 Views: 1,006 Your problem is:
do {
int computer = 0;
int player = 0;
int tie = 0;
That code is in the game loop... so every time the user wants to play again, all the scores get set back to '0'.... |
Forum: C++ Apr 18th, 2007 |
| Replies: 5 Views: 925 Like I said, they are not the same logic. Java is like C#, not C++.
If you think you can learn 2 different languages, then go ahead but I'm just letting you know they are different. |
Forum: C++ Apr 18th, 2007 |
| Replies: 5 Views: 925 java is like c#, not c++. |