What are the diferences between ms visual c++ compiler and linux c++ compiler?
I don't know what "linux c++ compiler" is, there are several that actually
work on Linux. The most common one (it comes with every distribution) is
GNU C++. The differences between Visual C++ (Microsoft Corporation's
product) and GNU C++ is that Visual C++ usually comes with a bunch of
tools to aid development, and GNU C++ is a command-line compiler. They do
have different standard libraries, they definitely different in terms of
extensions to the language they allow. They are also different in their
ability to optimize code and how much of the C++ Standard they implement.
IOW, the differences are many, your question is too general to answer any
better.
V