Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why use Visual Studio 6 for C++ [closed]

Tags:

c++

visual-c++

I am just wondering why programmers who program in C++ for windows always use Visual Studio 6 instead of Visual Studio 2008?

Isn't the compiler in 2008 much better than the one in VS6?

The reason I ask as I have used many sdk's that are always written in VS6?

Many thanks,

Steve

like image 723
ant2009 Avatar asked Oct 07 '09 10:10

ant2009


People also ask

Can I use Visual Studio for C programming?

The Microsoft C/C++ for Visual Studio Code extension supports IntelliSense, debugging, code formatting, auto-completion. Visual Studio for Mac doesn't support Microsoft C++, but does support . NET languages and cross-platform development.

Why does Visual Studio automatically close?

If you experience crashes of Visual Studio, typically when working with a very large solution, your IDE might be out of virtual memory. Typical indicators of the problem include a "one or more errors occurred" message, "the process appears to be deadlocked" message, and OutOfMemory exception in a crash dump.

What C standard does Visual Studio use?

MSVC C/C++ compiler reference - Visual Studio.


1 Answers

Partly it may be because earlier compilers are often (though not always) faster than later, and more feature-rich/standards-compliant, ones. I don't know whether this applies with VC6 vs later, but it may well do.

In the case of VC6 I think the two major factors are that the IDE is much faster to use than any of the painfully slow and greedy Visual Studio 200x IDEs, and that there's a huge amount of legacy code that will not compile with later, and more standards-compliant, VC++ compilers.

like image 116
dcw Avatar answered Oct 11 '22 15:10

dcw