Search:

Type: Posts; User: muggizuggi

Search: Search took 0.00 seconds.

  1. Replies
    11
    Views
    1,117

    Oops, sorry. Thanks for correcting me...

    Oops, sorry. Thanks for correcting me...
  2. Replies
    11
    Views
    1,117

    You are missing the type declaration in this...

    You are missing the type declaration in this line:


    for ( i = 1; i < size; i++ )
  3. Replies
    11
    Views
    1,117

    I suggest you make the function accept the array...

    I suggest you make the function accept the array as an arguement, and then test each cell against the next, from one end, using a separate variable and if statements. then you could simply output it...
  4. Replies
    4
    Views
    953

    Hmmm... I'd say you should probably look into...

    Hmmm...

    I'd say you should probably look into strings... :)
  5. Replies
    9
    Views
    1,594

    Hi there, I had a lot of questions about...

    Hi there,

    I had a lot of questions about exactly that, not too long ago.
    That is, until I found out how many more questions I really had, about game structure, and C++ programming in general.
    ...
  6. Replies
    12
    Views
    4,021

    Thanks alot! Lots of good info, especially...

    Thanks alot!

    Lots of good info, especially those links!
  7. Replies
    14
    Views
    26,105

    Everything is relative. It all depends how...

    Everything is relative.
    It all depends how complicated programs you intend to do, and obviously, how talented, motivated, and dedicated you are. That said, I don't think, in most cases, anyone will...
  8. Replies
    25
    Views
    1,924

    Try this: #include #include...

    Try this:


    #include <iostream.h>
    #include "menu.cpp"
    using namespace std;
    int main()
    {
    int answerget;
    startmenu();
  9. Replies
    17
    Views
    4,803

    Aahhh! Back from vacation. :cool: Now my skin...

    Aahhh! Back from vacation. :cool:
    Now my skin is a slightly less pale shade of blue.

    Eh... How am I going to milk you of all your good info, then? Poor suggestion, that one! :p

    Dae, I have...
  10. Replies
    17
    Views
    4,803

    Hello again, This is just a quick post to tell...

    Hello again,

    This is just a quick post to tell you all that I am still working hard on the homework that you have already given me. :)
    Thank you all so much!
    Especially you, Dae, for spending...
  11. Thread: Homework =)

    by muggizuggi
    Replies
    9
    Views
    2,108

    Well, what I did was going through tutorials on...

    Well, what I did was going through tutorials on the net. That means, I actually wrote and compiled the code in them, instead of just reading them. Be careful in your selection of tutorials, as many...
  12. Replies
    17
    Views
    4,803

    Wow, 7 answers already, with lots of good info!...

    Wow, 7 answers already, with lots of good info! Many thanks to all of you.

    I will try to answer all of you, and implement any correction I feel I understand.

    Lets start from the top:

    ...
  13. Replies
    17
    Views
    4,803

    Constructive criticism highly appreciated!

    I have previously had some questions about classes and references/pointers on this forum. And - I got some good answers, mainly from major_small and Dae. Thanks to both of you!

    Now, as it often is...
  14. Replies
    8
    Views
    1,496

    Why don't you make your struct a class, and then...

    Why don't you make your struct a class, and then include the function as a method of that class?

    Just a thought from a noob.
  15. Replies
    6
    Views
    1,592

    Eh, not to pretend to know anything, but isn't...

    Eh, not to pretend to know anything, but isn't DirectSound a part of DirectX, thereby "native" to Windows?
  16. Replies
    5
    Views
    1,117

    setprice() is not a method of your house class....

    setprice() is not a method of your house class. You must mean the one you called priceset(), right?

    A really good way to avoid this kind of error is to use the >new word = capital letter< naming...
  17. Replies
    26
    Views
    3,362

    Ok Major, I slept on it and I think I see your...

    Ok Major, I slept on it and I think I see your point.
    Doing it like that (creating and deleting pointers/references all the time) can get messy, and may also take its toll on the CPU, once I get to...
  18. Replies
    26
    Views
    3,362

    Thanks alot Major! :) Yup, I know about memory...

    Thanks alot Major! :)

    Yup, I know about memory leaks... So this is how they happen? Didn't Windows have some? ;)

    Couldn't you just destroy all pointers in the end of the funktion that uses...
  19. Replies
    26
    Views
    3,362

    OK, kewl. So that is how it is done. Then I hear...

    OK, kewl. So that is how it is done.
    Then I hear that they have to be destroyed again, or the undefined "danger" will arrise...
    Does that mean the pointer/refference itself or the entire object?...
  20. Replies
    26
    Views
    3,362

    Searching really works!

    Hi there, I'm new. :)

    I search the c++ forum for "class", pick the first topic, and what do I find?
    Someone with the exact same problem I am having!

    I am writing a texst/rpg-type game, and I...
Results 1 to 20 of 20