When are exception objects created?
If dog is a friend of boy and boy is a friend of house, is dog a friend of house?
Explain mutable storage class specifier.
How to declaring variables in c++?
Can you sort a set c++?
What is a static element?
is throwing exception from a constructor not a good practice ?
what is smart pointer & use of the smart pointer ???
Find the second maximum in an array?
How to reduce a final size of executable?
What is runtime errors c++?
Is c the same as 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; }