Does c++ have arraylist?
No Answer is Posted For this Question
Be the First to Post Answer
How many types of comments are there in c++?
Why do C++ compilers need name mangling?
What is a block in c++?
What are the different types of comments allowed in c++?
3- Write a program to find larger and smaller of the two numbers.
What is the Difference between "vector" and "array"?
15 Answers Covansys, Gambit, TCS, Wipro,
What is the difference between a pointer and a link in c ++?
What do you mean by a template?
Explain static and dynamic memory allocation with an example each.
Is c# written in c++?
What is the topic of the C++ FAQ list?
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; }