What is the meaning of c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is #include cstdlib in c++?
What are the five basic elements of a c++ program?
What is c++ hash?
What do you understand by pure virtual function? Write about its use?
What is the function of I/O library in C++ ?
Difference between a homogeneous and a heterogeneous container
What is different in C++, compare with unix?
Is ca high or low level language?
What is a type library?
What is c++ prototype?
What are guid? Why does com need guids?
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; }