How java is different from c and c++?
No Answer is Posted For this Question
Be the First to Post Answer
is throwing exception from a constructor not a good practice ?
What is the full form of ios?
What is lazy initialization in c++?
what do you mean by volatile variable?
check whether a no is prime or not.
What are structures and unions?
structure that describe a hotel with name, address,rooms and number of rooms
What is a .lib file in c++?
what is pre-processor 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; }
What are pointers used for c++?
What are libraries in c++?