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

When is the last time you coded in C/C++? What is the most lines of original C/C++ code you have personally written in one project? How confident are you in your ability to write C or C++ without a reference?

1 Answers   Microsoft,


What is the purpose of extern storage specifier?

0 Answers  


What is the arrow operator in c++?

0 Answers  


Is c++ a software?

0 Answers  


What methods can be overridden in java?

0 Answers  






What is private, public and protected inheritance?

0 Answers  


What problem does the namespace feature solve?

1 Answers  


What are the c++ access specifiers?

1 Answers  


What is a lambda function c++?

0 Answers  


Can a constructor throw a exception? How to handle the error when the constructor fails?

1 Answers  


class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected

3 Answers   Quark,


You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()

0 Answers  


Categories