Explain the register storage classes in c++.
No Answer is Posted For this Question
Be the First to Post Answer
What does '\r' and '\b' mean? Please explain with example.
What is function overriding?
What problems might the following macro bring to the application?
What is near, far and huge pointers? How many bytes are occupied by them?
What are multiple inheritances (virtual inheritance)?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
What is flush programming?
What is static function? Explain with an example
Why is c++ is better than c?
In a class only declaration of the function is there but defintion is not there then what is that function?
If a header file is included twice by mistake in the program, will it give any error?
What does it mean to declare a member function as static?