What is extern c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is difference c and c++?

1 Answers  


What is the difference between mutex and binary semaphore?

0 Answers  


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

5 Answers   Lucent,


What do you understand by a pure virtual member function?

0 Answers  


How can I disable the "echo" feature?

0 Answers  






Is c++ an integer?

0 Answers  


What is implicit pointer in c++?

0 Answers  


What is the extension of c++?

0 Answers  


program to print this triangle * * * * * *

12 Answers   Infosys,


What are vtable and vptr?

0 Answers  


Live example for static function?

1 Answers   Infosys,


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


Categories