Explain the differences between private, public and protected and give examples.
No Answer is Posted For this Question
Be the First to Post Answer
What is a virtual destructor?
What are built-in functions? What is the syntax for the definition?
Discuss the effects occur, after an exception thrown by a member function is unspecified by an exception specification?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
Is c++ a dying language?
Keyword mean in declaration?
Is java easier than c++?
Why seem interrupt handlers as member functions to be impossible?
What about Virtual Destructor?
What happens if a pointer is deleted twice?
What are the advantages of using a pointer? Define the operators that can be used with a pointer.
What is the difference between an external iterator and an internal iterator? Describe an advantage of the external iterator.