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 is volatile and pragma? When they are used?

1 Answers  


What is the meaning of string in c++?

0 Answers  


I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.

0 Answers  


What is the difference between multiple and multilevel inheritance in c++?

0 Answers  


Can we get the value of ios format flags?

0 Answers  






How to create a reference variable in C++

1 Answers  


Can we change the basic meaning of an operator in c++?

0 Answers  


the first character in the variable name must be an a) special symbol b) number c) alphabet

0 Answers  


If we want that any wildcard characters in the command line arguments should be appropriately expanded, are we required to make any special provision? If yes, which?

0 Answers  


Define whitespace in C++.

0 Answers   HCL,


Difference between overloaded functions and overridden functions

0 Answers  


What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;

4 Answers   Lehman Brothers,


Categories