CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Moghammed

Search: Search took 0.03 seconds.

  1. Replies
    7
    Views
    9,336

    Re: programm only working in debug?!

    Thank you!!

    The error was indeed one of the loops of my program.

    However, i still don't get how it could run fine in debug mode, and fail outside debug.
    I can't imagine this being...
  2. Replies
    7
    Views
    9,336

    Re: programm only working in debug?!

    Thx for your fast reply.

    is there any difference between


    mylist->fill()
    and

    (*mylist).fill()
  3. Replies
    4
    Views
    3,789

    Re: Pointer Panic

    thx for your replies!!

    sorry i didn't put the code in codetags, posted it too quickly and then couldn't find it back :S

    I've solved it though..

    for anyone interested:


    newnode = root;
  4. Replies
    7
    Views
    9,336

    programm only working in debug?!

    Hi there,

    I'm writing a win console program that creates 100 binary search trees, each consisting of 500 nodes that each hold an integer between 0 and 500.

    The trees are getting their 500...
  5. Replies
    4
    Views
    3,789

    Pointer Panic

    Hi all,

    I'm writing a program that implements a binary search tree datastructure using pointers.

    However, i have encountered a problem i can't seem to figure out...



    void bst::addnode(int...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured