What is c++ mutable?
No Answer is Posted For this Question
Be the First to Post Answer
Differences between private, protected and public and give examples.
What is the output of the following program? Why?
diff between pointer and reference in c++?
What is a lambda function c++?
What is the difference between a shallow copy and a deep copy?
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 handle class?
What is protected inheritance?
How should runtime errors be handled in c++?
How do you establish a has-a relationship?
Difference between overloaded functions and overridden functions
What is boyce codd normal form in c++?