CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 11 of 11

Threaded View

  1. #7
    Join Date
    May 2009
    Posts
    2,413

    Re: HELP Implementing Double Linked Lists as an Array of Pointers in C++

    Quote Originally Posted by GCDEF View Post
    Topic number 1 in schools really should be how to use the debugger and why you can't write any code without it.
    I disagree. Real programmers don't use debuggers. They write correct code. And they use the Stepwise Refinement method to accomplish that.

    Debuggers are fine when you inherit a pile of crap code and need to quickly hide the bad smell. But when you write new code it should work from start to finish and you should be confident it does.

    In this case the OP should start all over and develop the code incrementally in small working steps one by one. Start with something working and make sure everything you add in works too. How hard is that really?
    Last edited by nuzzle; December 29th, 2012 at 08:52 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured