Describe about storage allocation and scope of global, extern, static, local and register variables?
No Answer is Posted For this Question
Be the First to Post Answer
What is a pdb file?
What does ctime() do?
How do you define/declare constants in c++?
What is an undefined reference/unresolved external symbol error and how do I fix it?
Do you know the use of vtable?
What doescout<<(0==0) print out a) 0 b) 1 c) Compiler error: Lvalue required
Is c++ high level programming language?
what is data Abstraction
Will the following program execute?
Perform addition, multiplication, subtraction of 2-D array using Operator Overloading.
What is exception handling? Does c++ support exception handling?
class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list