How do you declare A pointer to a function which receives nothing and returns nothing
No Answer is Posted For this Question
Be the First to Post Answer
Explain the isa and hasa class relationships.
What language does google use?
What is dynamic and static typing?
What do you mean by enumerated data type?
What header file is needed for exit(); a) stdlib.h b) conio.h c) dos.h
Explain the use of this pointer?
How can a called function determine the number of arguments that have been passed to it?
Show the application of a dynamic array with the help of an example.
What is dev c++ used for?
What is a constant? Explain with an example.
How does atoi function work?
class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.