What is fixed in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is the function of I/O library in C++ ?
Explain how a pointer to function can be declared in C++?
Which programming language is best to learn first?
What is a constructor initializer list and when we use constructor initializer list?
write the prime no program in c++?
What are features of c++?
Write a code/algo to find the frequency of each element in an array?
What is flush c++?
How can you link a c++ program to c functions?
Write about the local class and mention its use?
What are the basic data types used 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; }