Where to download Visual C++ for Windows XP [closed] - c++

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
Questions all in the title. I've been trying for the past hour to get it. The first time, it came in French (How to change default language in Microsoft Visual C++). I can't seem to find one that doesn't come with a free toolbar and so many viruses that my Computer would explode. Can anyone help?
EDIT: #log0 has got the answer and rightly states in the comments that this kind of question is suitable for SO as defined in the FAQ. Can we reopen it (and possibly remove downvotes)? If you have downvoted, please can you explain why in the comments so I can rectify this question?

Microsoft Visual Studio 2008 Express Editions with SP1, from Microsoft download center:
http://www.microsoft.com/en-us/download/details.aspx?id=14597

Related

16-bit app crashing under Win7 32-bit (x86) but runs fine under Win XP [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 7 years ago.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Improve this question
As the subject says, I am having a problem with my 16-bit application. Application is very low-level, doing some operations in C++/Assembly language. One thing to emphasize: this is a faculty project, so I am somewhat confident that fellow colleagues (at least some of them) were able to run it under Win7.
Compilation is done via BCC compiler. I know, old as hell :)
Under Win7, it report the following error on exit:
Does anyone has some hints on how to on analyze the issue? I was told that memory management settings. I have the following settings available:
Any tips/hints would be greatly helpful!

why is Visual Studio 2012 not inserting brackets for me? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I am moving over from Java in eclipse to C++ with visual studio ultimate 2013, and something is really bothering me. Every time I write a function i have to manually insert the end brackets, which other IDEs always filled for me. Is there some setting where i can enable auto insert?
That is one of the most annoying features in Eclipse, as I can type my own } just as fast as having some automated script do it ...
That said, this is what you want: http://visualstudiogallery.msdn.microsoft.com/0e33cb22-d4ac-4f5a-902f-aff5177cc94d

Installing C++ compiler [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I am installing Dev C++ very first time. When I am trying to run a program, system is showing g++.exe has stopped running. So I can not ultimately run or compile a program. How to solve this problem?
I am using Windows-8. Same problem is occurring in Window-XP version of the operating system.
This may help:
http://geeksharing.blogspot.in/2013/02/dev-c-in-windows-8.html
If it doesn't solve indtall and updated Dev C++ version.
http://www.windows8downloads.com/win8-dev-c--wdoxnrth/
You may need to use the 64-bit version of mingw.
An updated version of dev-cpp is available at https://sourceforge.net/project
s/orwelldevcpp/
via http://sourceforge.net/p/dev-cpp/discussion/48211/thread/9b1f5cb0/

MSVCP110.dll missing error [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
Well I have a program that can only run with the presence of MSVCP110.DLL, and as I have found out, I need to BUY Visual Studio 2012 just to run the program... Would anyone be able to point a noob in the right direction?
If all you need is the DLL then Microsoft provide it in the Visual C++ Redistributable for Visual Studio 2012 .

How to run a C++ simple code in microsoft visual c++ express [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 9 years ago.
Improve this question
I want to run a very simple c++ code in microsoft visual c++ but I can't.
In my c++ book , they told me that I can do it but it requares some steps and I don't know how to do.
So , please tell me how to do it.
Thanks
Check this out, basic C++ Win32 application build in Visual Studio
http://msdn.microsoft.com/en-us/library/bb384843.aspx
Get used to using MSDN, it's very helpful for answering questions on programming for Windows in Visual Studio. A lot of sample code, both for common tasks and API-specific.