Explain deep copy and a shallow copy?
No Answer is Posted For this Question
Be the First to Post Answer
write the code that display the format just like 1 2 1 3 2 1 4 3 2 1 5 4 3 2 1 6 5 4 3 2 1
What is the most useful programming language?
What is the use of typedef?
Can we inherit constructor in c++?
If you don’t declare a return value, what type of return value is assumed?
What does int * mean in c++?
What are the three forms of cin.get() and what are their differences?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;
write a program that takes two numbers from user that prints the smallest number
how many trys can we write in one class
How do you print for example the integers 3,2,1,5,4 in a binary tree within the console in format where it looks like an actual binary tree?