Comment on c++ standard exceptions?
What are dynamic type checking?
What is the difference between Class and Structure?
40 Answers HP, IBM, Samsung, TCS,
How do you invoke a base member function from a derived class in which you’ve overridden that function?
What are the advantages and disadvantages of using inline and const?
2 Answers Polaris, TCS, Zimmer Biomet,
How much is size of struct having 1 char & 1 integer?
What is dev c++ used for?
What is the difference between static link library and dynamic link library?
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 encapsulation in c++?
What is constructor c++?
What is polymorphism and its type in c++?
What are the methods of exporting a function from a dll?