Differences between vc 6.0 and vc 7.0



Differences between vc 6.0 and vc 7.0..

Answer / vasanth

Visual C++ 6.0 (commonly known as VC6), which included MFC
6.0, was released in 1998[15]. The release was somewhat
controversial since it did not include an expected update
to MFC. Visual C++ 6.0 is still quite popular and often
used to maintain legacy projects. There are however issues
with this version under Windows XP, especially under the
debugging mode (ex: the values of static variables do not
display). The debugging issues can be solved with a patch
called the "Visual C++ 6.0 Processor Pack" downloadable
from http://msdn2.microsoft.com/en-
us/vstudio/aa718349.aspx; This page stresses that Users
must also be running Windows 98, Windows NT 4.0, or Windows
2000.'

Visual C++ .NET 2002 (known also as Visual C++ 7.0), which
included MFC 7.0, was released in 2002 with support for
link time code generation and debugging runtime
checks, .NET 1.0 and Visual C# and Managed C++. The new
user interface used many of the hot keys and conventions of
Visual Basic, which accounted for some of its unpopularity
among C++ developers.

Is This Answer Correct ?    6 Yes 1 No

Post New Answer

More VC++ AllOther Interview Questions

What is the difference between an MLE and an SLE?

1 Answers   Infosys,


Name some examples of the different types of windows found in a Windows application?

4 Answers  


What is the difference between pointer and reference?

7 Answers   IBM, Microsoft, Tech Mahindra,


What is microsoft visual c++ used for?

0 Answers  


What is microsoft visual c++ 2015 redistributable?

0 Answers  






#include<stdio.h>int(){int a,*b,**c,***d,****e; a=10;b=&a;c=&b;d=&c;e=&c;printf("a=%d b=%u c=%u d=% e=%u",a,b,c,d,e);printf ("%d%d%d\n",a,a+?*b,**c+***d+,****e);return0;}

1 Answers  


Do I need all the microsoft visual c++ redistributable?

0 Answers  


What is vcredist?

0 Answers  


What is an overlapped image?

1 Answers  


What is the difference between the client and non-client areas?

2 Answers  


How to declare more than one variable on a single line?

3 Answers   CMC,


What is cmutex?

0 Answers  


Categories