Is java made in c++?
No Answer is Posted For this Question
Be the First to Post Answer
what you know about c++?
What is class invariant?
How const int *ourpointer differs from int const *ourpointer?
What is algorithm in c++ programming?
What is a dangling pointer?
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; }
Is string data type in c++?
What is the difference between a type-specific template friend class and a general template friend class?
What is the basic structure of a c++ program?
What are raw sockets, where they are efficient?
What are the differences between a struct in C and in C++?
What do you know about friend class and friend function?