Explain the extern storage classes in c++.
No Answer is Posted For this Question
Be the First to Post Answer
What is doubly linked list in c++?
Can constructor be static in c++?
What is conditions when using boolean operators?
What are the various operations performed on stack?
What can I use instead of namespace std?
What is an explicit constructor?
Can a constructor be private?
Are iterators pointers?
What is the use of ::(scope resolution operator)?
What is the use of pointer in c++ with example?
Why preincrement operator is faster than postincrement?
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\"; } };