Explain deep copy?
No Answer is Posted For this Question
Be the First to Post Answer
Can we specify variable field width in a scanf() format string? If possible how?
Why do C++ compilers need name mangling?
What is flag in computer?
Define macro.
If a base class declares a function to be virtual, and a derived class does not use the term virtual when overriding that class, is it still virtual when inherited by a third-generation class?
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
What is const pointer and const reference?
How is new() different from malloc()?
Who was the creator of c++?
write the prime no program in c++?
why is iostream::eof inside a loop condition considered wrong?
What is the use of endl in c++ give an example?