What is the topic of the C++ FAQ list?



What is the topic of the C++ FAQ list?..

Answer / phool chand

Any C++ related subject occurring 'frequently' in the cplusplus echo. There must be no doubts _at_all_ that it is on topic in the echo. This means that normal (ANSI) C subjects are not on topic for this list. Also the coverage of subjects specific to a platform, compiler or library will be limited.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

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

2 Answers   Google,


Write about a nested class and mention its use?

0 Answers  


What are destructors?

0 Answers  


What is the use of ::(scope resolution operator)?

0 Answers  


int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30

2 Answers   AIG, Quark,






Describe about storage allocation and scope of global, extern, static, local and register variables?

0 Answers  


Do class declarations end with a semicolon?

0 Answers  


What sorting algorithm does c++ use?

0 Answers  


What is a conversion constructor?

1 Answers  


Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?

0 Answers  


How do you know that your class needs a virtual destructor?

5 Answers   Lucent,


What is vectorial capacity?

0 Answers  


Categories