Why c++ is better than c language?
No Answer is Posted For this Question
Be the First to Post Answer
Can we get the value of ios format flags?
What is the use of setprecision in c++?
Implement strncpy
How c functions prevents rework and therefore saves the programers time as wel as length of the code ?
Can you pass an array to a function in c++?
What are raw sockets, where they are efficient?
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; }
How to access a variable of the structure?
What is recursion?
How did c++ get its name?
What's the best free c++ profiler for windows?
Explain calling an object's member function(declared virtual)from its constructor?