What is helper in c++?
No Answer is Posted For this Question
Be the First to Post Answer
How can you quickly find the number of elements stored in a dynamic array?
If you had the following code: int x = 23; int *y; y = &x; The instruction y++; does what?
What is the header file for setw?
What is the size of a vector?
Explain the concept of copy constructor?
What is difference between malloc()/free() and new/delete?
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 is c++ best used for?
What is void pointer in c++ with example?
Write a struct time where integer m, h, s are its members?
Difference between delete and delete[]?
5 Answers Infosys, TCS, Virtusa,
State two differences between C and C++.