Define pure virtual function?
If you don’t declare a return value, what type of return value is assumed?
What are function poinetrs? where are they used?
What is the c++ programming language used for?
What is the difference between set and map in c++?
Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort
give me some class & objects examples?
Can I learn c++ as my first language?
Can you explain the term "resource acquisition is initialization?"
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 stoi in c++?
Why was c++ made?
What is the purpose of the "delete" operator?