Sashank Singh
Sashank Singh

Reputation: 21

What is the difference between visual studio and visual c++ IDE

What is the difference between visual c++ and visual studio. Also codes written in visual c++ do affect the portability and functionality of the code??

Upvotes: 2

Views: 11417

Answers (2)

John Lee
John Lee

Reputation: 1387

I remember seeing Visual C++ awhile back but Microsoft has moved to making Visual Studio their single IDE.

Check out this wiki link for more information. It says that Visual C++ has migrated into Visual Studio. However, it seems there might be some compatibility issues if you are using an older VS. I see you tagged VS2010 so you may want to read up on it depending on what functions you're using. Looks like VS2015 update 3 is the latest release that captures those functions.

https://en.wikipedia.org/wiki/Visual_C%2B%2B

Upvotes: 0

Mark Adelsberger
Mark Adelsberger

Reputation: 45819

Visual C++ is one of the languages that is supported in the Visual Studio IDE. I'm not aware of a separate Visual C++ IDE, and relevant searches return information about working in Visual Studio.

These are all part of Microsoft's development platform, and as such they most easily target Windows platforms and .NET. Beyond that I'm not sure I understand your question about portability.

Upvotes: 4

Related Questions