Have you used MSVC? What do you think of it?
Answers were Sorted based on User's Feedback
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 |
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 |
What is a container class?
What is the basic of c++?
Explain differences between new() and delete()?
Can you be able to identify between straight- through and cross- over cable wiring? And in what case do you use straight- through and cross-over?
Why was c++ made?
What is the difference between a copy constructor and an overloaded assignment operator?
4 Answers Belzabar, Citrix, Microsoft, Wipro,
when can we use copy constructor?
Is there a c++ certification?
What is the auto keyword good for in c++?
Explain Memory Allocation in C/C++ ?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
How do we implement inheritance in c++?