Write a program to concatenate two strings.
No Answer is Posted For this Question
Be the First to Post Answer
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; }
Define 'std'.
Who invented turbo c++?
What is a vector c++?
How do you compile the source code with your compiler?
What are pointer-to-members in C++? Give their syntax.
What is difference between c++ and c ++ 14?
Why do we need templates?
What is the difference between global int and static int declaration?
what is smart pointer & use of the smart pointer ???
What is math h in c++?
What are put and get pointers?