what is the difference between linear list linked
representaion and linked representation? what is the
purpose of representing the linear list in linked
represention ? is it not avoiding rules of linear
represention?
No Answer is Posted For this Question
Be the First to Post Answer
What are access specifiers in C++?
Is overriding possible in c++?
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;
What is long in c++?
this is to swap to strings....but in output the whole strings are swapped leaving first as it is...why it is so #include<iostream.h> int main() { char a[]="ajeet"; char b[]="singh"; long x=*a; long y=*b; cout<<x<<":"<<y; x=x+y; y=x-y; x=x-y; *a=x; *b=y; cout<<x<<":"<<y; cout<<&a<<endl; cout<<&b<<endl; }
What is the difference between a copy constructor and an overloaded assignment operator?
4 Answers Belzabar, Citrix, Microsoft, Wipro,
What is a constructor initializer list and when we use constructor initializer list?
Explain the use of vtable.
What do you mean by abstraction in C++?
Is java a c++?
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
Differentiate between a template class and class template?