Have you used MSVC? What do you think of it?

Answers were Sorted based on User's Feedback



Have you used MSVC? What do you think of it?..

Answer / mms zubeir

It's a wonderful GUI tool to develop system as well as
large scale applications.
It's debugger is fantastic in usage front, reducing much of
our work and time.
Simply, it is a powerful tool with choices of libraries to
ease developers' effort.

The awful thing here is, it does many things for us and
hence suppressing our creativity and ability to work hard.
It makes us to loose the taste of programming and be
a 'coach pototo'.

Is This Answer Correct ?    2 Yes 0 No

Have you used MSVC? What do you think of it?..

Answer / bob

it is pretty good for MS$ based application. Although the
compiler is not standardize enough, crappy STL
implementation, and awesome designed MFC libraries.

But it is improving, since VC4.0 to VS2005, it always
astonish me.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What are the debugging methods you use when came across a problem?

1 Answers  


Which c++ compiler is best?

0 Answers  


write a programming using for loop in c++ to generate diamond trangel?

1 Answers   NIIT,


Eplain extern keyword?

0 Answers  


Does defining a function inline mean that it wont push and pop things on/off the stack ...like parameters and the return the address??

2 Answers  






Should you pass exceptions by value or by reference?

0 Answers  


Does std endl flush?

0 Answers  


Define Virtual function in C++.

0 Answers   iNautix,


What does count ++ do in c++?

0 Answers  


class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;

1 Answers   Quark,


Is it possible for the objects to read and write themselves?

0 Answers  


Explain the difference between c & c++?

0 Answers  


Categories