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

Thread: c++ vs VC++

  1. #1
    Join Date
    Feb 2011
    Posts
    13

    c++ vs VC++

    Hey all,

    I'm new to C++ and was wondering what the difference was between c++ and visual C++.

    Also.. i've tried to install Microsoft Visual C++ studio and the files don't download to install. It keeps trying to reconnect.. anyway to get those manually?

    thanks,
    Steven

  2. #2
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,430

    Re: c++ vs VC++

    About VC++:
    http://en.wikipedia.org/wiki/Visual_C%2B%2B
    http://www.google.com/search?q=visua...icrosoft:en-US

    About "installing": what exactly did you try to download and install?
    Last edited by VictorN; February 6th, 2011 at 03:46 PM.
    Victor Nijegorodov

  3. #3
    Join Date
    Oct 2006
    Location
    Sweden
    Posts
    3,654

    Re: c++ vs VC++

    MS Visual C++ is a complete IDE i.e. editor, debugger, compiler & linker in one big package.

    Maybe you should download the full ISO and install from that instead? Select All - Offline Install ISO image file on the download page. Also, if your internet connection is unstable a download manager like for instance http://www.freedownloadmanager.org/ could be practical.
    Debugging is twice as hard as writing the code in the first place.
    Therefore, if you write the code as cleverly as possible, you are, by
    definition, not smart enough to debug it.
    - Brian W. Kernighan

    To enhance your chance's of getting an answer be sure to read
    http://www.codeguru.com/forum/announ...nouncementid=6
    and http://www.codeguru.com/forum/showthread.php?t=366302 before posting

    Refresh your memory on formatting tags here
    http://www.codeguru.com/forum/misc.php?do=bbcode

    Get your free MS compiler here
    https://visualstudio.microsoft.com/vs

  4. #4
    Join Date
    Feb 2011
    Posts
    13

    Re: c++ vs VC++

    Ahhh ok so c++ is a language and vc++ is an application to compile c++ code?

  5. #5
    Join Date
    Apr 2008
    Posts
    118

    Re: c++ vs VC++

    VC++ is a set of applications to write, compile and link C++ code.

  6. #6
    Join Date
    May 2009
    Posts
    2,413

    Re: c++ vs VC++

    Quote Originally Posted by stevenpalomino View Post
    Ahhh ok so c++ is a language and vc++ is an application to compile c++ code?
    That's right. Such an application is generally called an IDE (Integrated Development Environment).

    VC++ is part of a whole package of IDE's from Microsoft called Visual Studio.

    http://en.wikipedia.org/wiki/Microsoft_Visual_Studio

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