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

Search:

Type: Posts; User: TomekL

Search: Search took 0.01 seconds.

  1. Replies
    29
    Views
    33,200

    Re: C++ Error...IDK what is wrong!

    Hi,
    sorry, I haven't noticed the date. After registration I just clicked a thread on a main page to see what's going on. Now it appears it was "Hottest CodeGuru Threads" section and it's "hottest"...
  2. Replies
    29
    Views
    33,200

    Re: C++ Error...IDK what is wrong!

    Actually your chain is a bit too "quick". Instead of
    a = 2;
    a = b;
    b = c;
    c = d;
    d = e;
    you should do
    a = 2;
    b = a;
    c = b;
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured