Define pure virtual function?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

If you don’t declare a return value, what type of return value is assumed?

0 Answers  


What are function poinetrs? where are they used?

1 Answers   CTS,


What is the c++ programming language used for?

0 Answers  


What is the difference between set and map in c++?

0 Answers  


Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort

0 Answers  


give me some class & objects examples?

1 Answers  


Can I learn c++ as my first language?

0 Answers  


Can you explain the term "resource acquisition is initialization?"

1 Answers   Amazon,


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; }

1 Answers  


What is stoi in c++?

0 Answers  


Why was c++ made?

0 Answers  


What is the purpose of the "delete" operator?

0 Answers  


Categories