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

Search:

Type: Posts; User: bigc++

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    1,236

    MSDN Documentation books

    Does anyone know if Microsoft has a collection of official MSDN books that are print versions of their online MSDN documentation?
  2. Monitoring progress of a subroutine that is using a file stream as an input

    What is the traditional way to monitor a blocking subroutine that is using a file stream as its input? That is, what is the traditional way to make a progress meter in the console?

    Say I have a...
  3. Re: Visual Studio Debug vs Release "Start Debugging"

    Just the file name: "a.txt" is the input parameter. The file is in the same folder as the executable
  4. Visual Studio Debug vs Release "Start Debugging"

    Is there something inherently wrong with using the "Start Debugging" feature in Visual Studio C++ when in Release mode? Die to unrelated problems Debug mode has been disabled in my Visual Studio. I...
  5. Replies
    3
    Views
    1,161

    .dlls in visual studio c++

    When you are using a generic library that comes with .libs, .h headers, and .dll's, you configure a new project and point VC++ to look at the directories configured in the project properties. But...
  6. If a function returns a pointer to something .... who manages the memory?

    If a function like c_str() returns a pointer, who is responsible for cleaning up the returned space at the end of the scope? The function that gave you the pointer or you?
  7. Re: noob question on cost char * returned by various functions

    Thankyou
  8. noob question on cost char * returned by various functions

    What is the programmers responsibility with respect to const char * returned by various functions, like the C++ string class c_str() function which returns a const char * to an c style string array?...
  9. Replies
    6
    Views
    1,925

    Re: copy constructor issues with vector class

    Thanks to all who replied. Insightful answers. It makes sense now
  10. Replies
    6
    Views
    1,925

    copy constructor issues with vector class

    Hey there. Newbie c++ student here. I am experiment with copy constructors and STL containers. I made a test class A and gave it an assignment operator and a copy constructor. I then instantiated an...
Results 1 to 10 of 10





Click Here to Expand Forum to Full Width

Featured